Re: Different results from Keyword Planner and GetKeywordIdeas

2016-04-26 Thread 'Yin Niu' via AdWords API Forum
Hi, 

Could you specify your settings for Keyword planner? And what is the 
difference between the Keyword planner and your API result? 

Please send SOAP request and response logs also. Just click *Reply 
privately to author* in the forum when responding.

Thanks,
Yin, AdWords API Team. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3cb768e0-d362-4d74-acd6-daf1da419a72%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Re: Different results from Keyword Planner and GetKeywordIdeas

2016-04-26 Thread Kamil R
And just for sure
in networkSearchParameter() i have targetSearchNetwork set to FALSE; not 
TRUE as in above code (copy/paste too much))

W dniu wtorek, 26 kwietnia 2016 14:58:37 UTC+2 użytkownik Kamil R napisał:
>
> Hi Yin,
> I've the same issue as David but my configuration is much extended than 
> example code, take a look
>
> /**
>  * Get the service, which loads the required classes.
>  */
> $targetingIdeaService = $user->GetService('TargetingIdeaService', 
> ADWORDS_VERSION);
>
> /**
>  *  Create selector.
>  */
> $selector = new TargetingIdeaSelector();
> $selector->requestType = 'IDEAS';
> $selector->ideaType = 'KEYWORD';
> $selector->localeCode = 'pl';
> $selector->currencyCode = 'PLN';
> $selector->requestedAttributeTypes = array(
> 'KEYWORD_TEXT', 
> 'SEARCH_VOLUME', 
> 'CATEGORY_PRODUCTS_AND_SERVICES', 
> 'AVERAGE_CPC', 
> 'COMPETITION', 
> 'IDEA_TYPE', 
> 'TARGETED_MONTHLY_SEARCHES'
> );
>
> /**
>  *  Create related to query search parameter.
>  */
> $relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
> $relatedToQuerySearchParameter->queries = $keywords;
> $selector->searchParameters[] = $relatedToQuerySearchParameter;
>
> /**
>  *  Create related to idea filter text.
>  */
> $ideaTextFilterSearchParameter = new IdeaTextFilterSearchParameter();
> $ideaTextFilterSearchParameter->included = $keywords;
> $selector->searchParameters[] = $ideaTextFilterSearchParameter;
>
> /**
>  *  Create language search parameter (optional).
>  *  The ID can be found in the documentation: 
> https://developers.google.com/adwords/api/docs/appendix/languagecodes
>  *  1030 measn 'Poland';
>  */
> $languageParameter = new LanguageSearchParameter();
> $language = new Language();
> $language->id = 1030;
> $languageParameter->languages = array($language);
> $selector->searchParameters[] = $languageParameter;
>
> /**
>  *  Create location search parameter (optional).
>  *  The ID can be found in the documentation: 
> https://developers.google.com/adwords/api/docs/appendix/geotargeting
>  *  2616 means 'Poland'
>  */
> $locationParameter = new LocationSearchParameter();
> $location = new Location();
> $location->id = 2616;
> $locationParameter->locations = array($location);
> $selector->searchParameters[] = $locationParameter;
>
> /**
>  *  Create network search parameter (optional).
>  */
> $networkSetting = new NetworkSetting();
> $networkSetting->targetGoogleSearch = true;
> $networkSetting->targetSearchNetwork = true;
> $networkSetting->targetContentNetwork = false;
> $networkSetting->targetPartnerSearchNetwork = false;
> $networkSearchParameter = new NetworkSearchParameter();
> $networkSearchParameter->networkSetting = $networkSetting;
> $selector->searchParameters[] = $networkSearchParameter;
>
> /**
>  *  Set selector paging (required by this service).
>  */
> $selector->paging = new Paging(0, AdWordsConstants::
> RECOMMENDED_PAGE_SIZE);
>
> Even with that I'm getting much much smaller results than from UI Keyword 
> Planner Tool. How come?
> Im UI KP  i've set same location (Poland), same language (Polish) and 
> network (Google). What can be a problem? I would be gracefull for your help.
>
>
> W dniu wtorek, 5 stycznia 2016 20:05:21 UTC+1 użytkownik Yin Niu napisał:
>>
>> Hi David, 
>>
>> You could specify different search terms 
>> 
>>  using 
>> API. The example just specifies the RelatedToQuerySearchParameter and 
>> LanguageParameter. You could add NetworkSearchTerm to set the Network 
>> Settings 
>> 
>>  to 
>> Google Search only. 
>>
>> You could set the RelatedToQuerySearchParameter query string to negative 
>> keywords in order to generate ideas for negative keywords. There is no 
>> direct way to generate negative keywords ideas using API. That could be the 
>> reason why you are getting different number for ideas. 
>>
>> Thanks,
>> Yin, AdWords API Team. 
>>
>>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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
--

Re: Different results from Keyword Planner and GetKeywordIdeas

2016-04-26 Thread Kamil R
Hi Yin,
I've the same issue as David but my configuration is much extended than 
example code, take a look

/**
 * Get the service, which loads the required classes.
 */
$targetingIdeaService = $user->GetService('TargetingIdeaService', 
ADWORDS_VERSION);

/**
 *  Create selector.
 */
$selector = new TargetingIdeaSelector();
$selector->requestType = 'IDEAS';
$selector->ideaType = 'KEYWORD';
$selector->localeCode = 'pl';
$selector->currencyCode = 'PLN';
$selector->requestedAttributeTypes = array(
'KEYWORD_TEXT', 
'SEARCH_VOLUME', 
'CATEGORY_PRODUCTS_AND_SERVICES', 
'AVERAGE_CPC', 
'COMPETITION', 
'IDEA_TYPE', 
'TARGETED_MONTHLY_SEARCHES'
);

/**
 *  Create related to query search parameter.
 */
$relatedToQuerySearchParameter = new RelatedToQuerySearchParameter();
$relatedToQuerySearchParameter->queries = $keywords;
$selector->searchParameters[] = $relatedToQuerySearchParameter;

/**
 *  Create related to idea filter text.
 */
$ideaTextFilterSearchParameter = new IdeaTextFilterSearchParameter();
$ideaTextFilterSearchParameter->included = $keywords;
$selector->searchParameters[] = $ideaTextFilterSearchParameter;

/**
 *  Create language search parameter (optional).
 *  The ID can be found in the documentation: 
https://developers.google.com/adwords/api/docs/appendix/languagecodes
 *  1030 measn 'Poland';
 */
$languageParameter = new LanguageSearchParameter();
$language = new Language();
$language->id = 1030;
$languageParameter->languages = array($language);
$selector->searchParameters[] = $languageParameter;

/**
 *  Create location search parameter (optional).
 *  The ID can be found in the documentation: 
https://developers.google.com/adwords/api/docs/appendix/geotargeting
 *  2616 means 'Poland'
 */
$locationParameter = new LocationSearchParameter();
$location = new Location();
$location->id = 2616;
$locationParameter->locations = array($location);
$selector->searchParameters[] = $locationParameter;

/**
 *  Create network search parameter (optional).
 */
$networkSetting = new NetworkSetting();
$networkSetting->targetGoogleSearch = true;
$networkSetting->targetSearchNetwork = true;
$networkSetting->targetContentNetwork = false;
$networkSetting->targetPartnerSearchNetwork = false;
$networkSearchParameter = new NetworkSearchParameter();
$networkSearchParameter->networkSetting = $networkSetting;
$selector->searchParameters[] = $networkSearchParameter;

/**
 *  Set selector paging (required by this service).
 */
$selector->paging = new Paging(0, AdWordsConstants::
RECOMMENDED_PAGE_SIZE);

Even with that I'm getting much much smaller results than from UI Keyword 
Planner Tool. How come?
Im UI KP  i've set same location (Poland), same language (Polish) and 
network (Google). What can be a problem? I would be gracefull for your help.


W dniu wtorek, 5 stycznia 2016 20:05:21 UTC+1 użytkownik Yin Niu napisał:
>
> Hi David, 
>
> You could specify different search terms 
> 
>  using 
> API. The example just specifies the RelatedToQuerySearchParameter and 
> LanguageParameter. You could add NetworkSearchTerm to set the Network 
> Settings 
> 
>  to 
> Google Search only. 
>
> You could set the RelatedToQuerySearchParameter query string to negative 
> keywords in order to generate ideas for negative keywords. There is no 
> direct way to generate negative keywords ideas using API. That could be the 
> reason why you are getting different number for ideas. 
>
> Thanks,
> Yin, AdWords API Team. 
>
>

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/3dcd5e49-83eb-4124-9f02-

Re: Different results from Keyword Planner and GetKeywordIdeas

2016-01-05 Thread Yin Niu
Hi David, 

You could specify different search terms 

 using 
API. The example just specifies the RelatedToQuerySearchParameter and 
LanguageParameter. You could add NetworkSearchTerm to set the Network 
Settings 

 to 
Google Search only. 

You could set the RelatedToQuerySearchParameter query string to negative 
keywords in order to generate ideas for negative keywords. There is no 
direct way to generate negative keywords ideas using API. That could be the 
reason why you are getting different number for ideas. 

Thanks,
Yin, AdWords API Team. 

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/b1e515d1-3b20-4f28-9c7a-0d6a9367c93a%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.


Different results from Keyword Planner and GetKeywordIdeas

2016-01-05 Thread David Cabanillas
Hi,

I'm usign Keyword Planner and the example provided by Adwords API 
GetKeyworkIdeas but they don't show the sames results.

The GetKeyworkIdeas returns around 500 ideas and the Keyword Planner 801. 

I have only modified the language spanish 1003L at the GetKeyworkIdeas.java 
and  paging.setNumberResults(2000);. and the setQueries was coche

At Keyword Planner I'm getting ideas about the query coche

Targeting  
All locations
Spanish
Google
Negative keywords
Date range  
Show avg. monthly searches for: Last 12 months

-- 
-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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.
Visit this group at https://groups.google.com/group/adwords-api.
To view this discussion on the web visit 
https://groups.google.com/d/msgid/adwords-api/f361335e-99d1-476a-a068-97be48eaca95%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.