Tim,

Please see the guide on using the TrafficEstimatorService 
<https://developers.google.com/adwords/api/docs/guides/traffic-estimator-service>.
 
 The result could differ based on the differences in the actual input, such 
as different criteria, network, etc.

Thanks,

Ray

On Wednesday, August 13, 2014 4:55:33 AM UTC-4, Tim wrote:
>
> Hi Ray,
> Thanks for your answer.
> About another question...
>
> API Result:
>     KEYWORD_TEXT = 'internet marketing' 
>     SEARCH_VOLUME = '60500'
>     KEYWORD_TEXT = 'online marketing' 
>     SEARCH_VOLUME = '60500'
>     KEYWORD_TEXT = 'direct marketing' 
>     SEARCH_VOLUME = '33100'
>     KEYWORD_TEXT = 'business marketing' 
>     SEARCH_VOLUME = '8100'
>     ...
>
>
> Keyword Planner:
>
> <https://lh6.googleusercontent.com/-umjNlqZ0n6E/U-snZMUOb6I/AAAAAAAAAGE/J9_8RpuEu5Q/s1600/2014-08-13%2B16.20.41.png>
>
>
> Why are my API results SEARCH_VOLUME different Keyword Planner?
> Which is real time?
>
>
> Thanks,
>
> Tim
>
>
> Ray Tsang (AdWords API Team)於 2014年8月12日星期二UTC+8下午11時24分22秒寫道:
>>
>> 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.

Reply via email to