Tim, That's not feasible as the result is tied to the queries as a whole.
Thanks, Ray On Tuesday, August 12, 2014 12:08:54 AM UTC-4, Tim wrote: > > Hi Ray, > > Thanks for your answer. > About the second question... > > > Example: > > $user = new AdWordsUser(); > > $user->LogAll(); > > $targetingIdeaService = $user->GetService('TargetingIdeaService', > 'v201402'); > > $keyword = array('digital', 'marketing'); > > $selector = new TargetingIdeaSelector(); > $selector->requestType = 'IDEAS'; > $selector->ideaType = 'KEYWORD'; > $selector->requestedAttributeTypes = array('KEYWORD_TEXT', > 'SEARCH_VOLUME', 'CATEGORY_PRODUCTS_AND_SERVICES'); > > $languageParameter = new LanguageSearchParameter(); > $language = new Language(); > $language->id = 1000; > $languageParameter->languages = array($language); > > $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter(); > $relatedToQuerySearchParameter->queries = $keyword; > $selector->searchParameters[] = $relatedToQuerySearchParameter; > $selector->searchParameters[] = $languageParameter; > > $selector->paging = new Paging(0, > AdWordsConstants::RECOMMENDED_PAGE_SIZE); > > do { > $page = $targetingIdeaService->get($selector); > > if (isset($page->entries)) { > foreach ($page->entries as $targetingIdea) { > $data = MapUtils::GetMap($targetingIdea->data); > $keyword = $data['KEYWORD_TEXT']->value; > $search_volume = isset($data['SEARCH_VOLUME']->value) ? > $data['SEARCH_VOLUME']->value : 0; > > printf("KEYWORD_TEXT = '%s' <br/> SEARCH_VOLUME = '%s' > <hr/>", $keyword, $search_volume); > } > } else { > print "No keywords ideas were found.\n"; > } > > $selector->paging->startIndex += > AdWordsConstants::RECOMMENDED_PAGE_SIZE; > } while ($page->totalNumEntries > $selector->paging->startIndex); > > > > Result: > > KEYWORD_TEXT = 'digital marketing' > SEARCH_VOLUME = '74000' > ... > KEYWORD_TEXT = 'market research methods' > SEARCH_VOLUME = '1600' > KEYWORD_TEXT = 'small business' > SEARCH_VOLUME = '74000' > KEYWORD_TEXT = 'digital asset management' > SEARCH_VOLUME = '8100' > KEYWORD_TEXT = 'advertise online' > SEARCH_VOLUME = '1000' > ... > > > > How do I know each the KEYWORD_TEXT is belong to 'digital' or 'marketing'? > > > > Thanks, > > Tim > > -- -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and Google+: https://googleadsdeveloper.blogspot.com/ https://plus.google.com/+GoogleAdsDevelopers/posts =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords 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 "AdWords API Forum" group. To unsubscribe from this group and stop receiving emails from it, send an email to adwords-api+unsubscr...@googlegroups.com. For more options, visit https://groups.google.com/d/optout.