Another followup, here is the working curl with the token, customer ID & dev token redacted:
curl 'https://content-googleads.googleapis.com/v14/customers/8750204858:generateKeywordForecastMetrics' \ -H 'Developer-Token: DEVTOKENREDACTED\ -H 'Login-Customer-Id: LOGINCUSTOMERIDREDACTED\ -H 'Content-Type: text/plain' \ -H 'Authorization: ACCESSTOKENREDACTED' \ -d '{ "campaign": { "adGroups": [ { "biddableKeywords": [ { "keyword": { "matchType": "BROAD", "text": "houston homes for sale" } } ], "maxCpcBidMicros": 5000000 } ], "keywordPlanNetwork": "GOOGLE_SEARCH" }, "forecastPeriod": { "endDate": "2023-07-30", "startDate": "2023-07-01" } }' Response: { "campaignForecastMetrics": { "impressions": 21333.228515625, "clickThroughRate": 0.17527243494987488, "averageCpcMicros": "1550281", "clicks": 3739.126953125, "costMicros": "5796696000", "conversions": 226.53358459472656, "conversionRate": 0.060584619641304016, "averageCpaMicros": "25588682" } } On Friday, June 23, 2023 at 8:53:30 AM UTC-6 Patrick P wrote: > Followup: > > I did get this working in the API explorer using the REST API so I think > I'm just going to ditch the php SDK since the support is so bad > > Here was the request payload that worked for me: > { > "campaign": { > "adGroups": [ > { > "biddableKeywords": [ > { > "keyword": { > "matchType": "BROAD", > "text": "houston homes for sale" > } > } > ], > "maxCpcBidMicros": 5000000 > } > ], > "keywordPlanNetwork": "GOOGLE_SEARCH" > }, > "forecastPeriod": { > "endDate": "2023-07-30", > "startDate": "2023-07-01" > } > } > > Returning: > { > "campaignForecastMetrics": { > "impressions": 21333.228515625, > "clickThroughRate": 0.17527243494987488, > "averageCpcMicros": "1550281", > "clicks": 3739.126953125, > "costMicros": "5796696000 <(579)%20669-6000>", > "conversions": 226.53358459472656, > "conversionRate": 0.060584619641304016, > "averageCpaMicros": "25588682" > } > } > > On Friday, June 23, 2023 at 8:36:51 AM UTC-6 Patrick P wrote: > >> I'm still trying to get generateforecastmetrics() working in the v14 php >> sdk >> >> This code is segfaulting for me when trying to instantiate the >> BiddableKeyword object >> >> $KeywordPlanIdeaServiceClient = >> $googleAdsClient->getKeywordPlanIdeaServiceClient(); >> >> $biddableKeywords = new BiddableKeyword([ >> 'keyword' => new KeywordInfo([ >> 'text' => 'houston homes for sale', >> 'match_type' => KeywordMatchType::BROAD >> ]) >> ]); >> >> $forecastAdGroup = new ForecastAdGroup([$biddableKeywords]); >> >> $keywordPlanCampaign = new CampaignToForecast([ >> 'ad_groups' => [$forecastAdGroup], >> ]); >> >> $reqArr = array( >> "customerId" => $customerId, >> "currencyCode" => "USD", >> "forecastPeriod" => array( >> "start_date" => "2023-07-01", >> "end_date" => "2023-06-30" >> ) >> ); >> >> $generateKeywordForecastMetricsResponse = >> $KeywordPlanIdeaServiceClient->generateKeywordForecastMetrics($keywordPlanCampaign, >> >> $reqArr); >> >> >> output: >> >> root@laravel-playground:/var/www/sdks/google-ads-php/examples/Planning# >> php8.1 AddKeywordPlan.php >> Created keyword plan: 'customers/8750204858/keywordPlans/719125200' >> Created campaign for keyword plan: >> 'customers/8750204858/keywordPlanCampaigns/669754323' >> Created ad group for keyword plan: >> 'customers/8750204858/keywordPlanAdGroups/701291997' >> Segmentation fault (core dumped) >> >> >> Google rep: it's been 3 weeks since you've deprecated the old methods, >> can you please supply us with a working example? >> >> >> >> -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog: https://googleadsdeveloper.blogspot.com/ =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API and Google Ads API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en --- You received this message because you are subscribed to the Google Groups "Google Ads API and AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. To view this discussion on the web visit https://groups.google.com/d/msgid/adwords-api/3be665f8-7c77-47ff-a5a8-21ae99a118bdn%40googlegroups.com.