Hi,

I'm having a trouble to getting monthly local search volume with the
targeting idea service.
It is not only missing last two months (Apr/May) search volumes, but
also the data is completely wrong.
I was comparing the local search volume between the data from Adwords
api and from Adwords external keyword tool (https://adwords.google.com/
select/KeywordTool) and I noticed that the data is completely
different.
So, I registered another new account for Adwords API and it gives all
the data.
There is no missing month and the monthly search volume data is
different from I got from old account.

Can you explain about this issue?

--
$user = new AdWordsUser();
$user->LogDefaults();
$targetingIdeaService = $user->GetTargetingIdeaService('v200909');

$keywords = array();
$keyword = new Keyword();
$keyword->text = "chess moves";
$keyword->matchType = 'EXACT';
$keywords[] = $keyword;

// Create selector.
$selector = new TargetingIdeaSelector();
$selector->requestType = 'STATS';
$selector->ideaType = 'KEYWORD';
$selector->localeCode = 'en_US';
$selector->requestedAttributeTypes = array('KEYWORD',
'TARGETED_MONTHLY_SEARCHES', 'GLOBAL_MONTHLY_SEARCHES');

// Set selector paging (required for targeting idea service).
$paging = new Paging();
$paging->startIndex = 0;
$paging->numberResults = 1;
$selector->paging = $paging;

// Create related to keyword search parameter.
$relatedToKeywordSearchParameter = new
RelatedToKeywordSearchParameter();
$relatedToKeywordSearchParameter->keywords = $keywords;
$selector->searchParameters = array($relatedToKeywordSearchParameter);

// Get related keywords.
$page = $targetingIdeaService->get($selector);

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
Also find us on our blog and discussion group:
http://adwordsapi.blogspot.com
http://groups.google.com/group/adwords-api
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~

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

Reply via email to