guelug / google-api-adwords-php

Automatically exported from code.google.com/p/google-api-adwords-php
Apache License 2.0
0 stars 0 forks source link

TargetingIdeaService result Not match with UI. #107

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Hello,

We have been using the TargetingIdeaService to get New KEYWORD_TEXT 
,AVERAGE_CPC , SEARCH_VOLUME for some time now but recently we have noticed 
that the values returing were not expected.

For example, for the keywords in 

$targetingIdeaService = $user->GetService('TargetingIdeaService', '201306');

  // Create seed keyword.

  $keyword = array('in home senior care','senior care services','senior home care','elder home care'...etc);

  // Create selector.
  $selector = new TargetingIdeaSelector();
  $selector->requestType = 'IDEAS';
  $selector->ideaType = 'KEYWORD';
  $selector->requestedAttributeTypes =   array('KEYWORD_TEXT','COMPETITION','SEARCH_VOLUME','AVERAGE_CPC');

  $languageParameter = new LanguageSearchParameter();
  $english = new Language();
  $english->id = 1000;
  $languageParameter->languages = array($english);

  $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
  $relatedToQuerySearchParameter->queries = $keyword;
  $selector->searchParameters[] = $relatedToQuerySearchParameter;
  $selector->searchParameters[] = $languageParameter;
  $selector->paging = new Paging(0, 500);

  $page = $targetingIdeaService->get($selector);

Result Keywords stats Not match with UI. and Average cpc is also very High.

What is the issue??

Original issue reported on code.google.com by chirag.e...@gmail.com on 30 Jul 2013 at 7:56

GoogleCodeExporter commented 8 years ago
Hi there,

This question seems more towards the exposed API, rather than the client 
library it's self.

Please post your question to the AdWords API Forum to get a correct response:
http://groups.google.com/forum/#!forum/adwords-api

Regards,

- Paul, AdWords API Team.

Original comment by api.pmat...@gmail.com on 31 Jul 2013 at 4:16