Hi there!
I'm new to the Adwords API but I'm trying to get related keywords (as
well as the monthly search volume) for german language , searches from
Austria.
I'm using your basic code mixed with snippets found at the Adwords API
Forum.
When I run the code I do only get english results...Do you find my
mistake?
#######################
<?php
error_reporting(E_STRICT | E_ALL);
$path = dirname(__FILE__) . '/../../src';
set_include_path(get_include_path() . PATH_SEPARATOR . $path);
require_once 'Google/Api/Ads/AdWords/Lib/AdWordsUser.php';
try {
$user = new AdWordsUser();
// Log SOAP XML request and response.
$user->LogDefaults();
$keywordService = $user-
>GetTargetingIdeaService();
$keyword = new Keyword();
$keyword->text = "auto";
$keyword->matchType = "BROAD";
$languageService= new LanguageTarget();
$languageService->languageCode='de';
$languageService->TargetType='de';
$countryService= new
CountryTargetSearchParameter();
$countryService->countryTargets='AT';
$keyword_array = array($keyword);
$relatedToKeywordSearchParameter = new
RelatedToKeywordSearchParameter($keyword_array, $languageService,
$countryService);
$targetingIdeaSelector = new
TargetingIdeaSelector();
$targetingIdeaSelector->searchParameters =
array(
$relatedToKeywordSearchParameter
);
$targetingIdeaSelector->ideaType = 'KEYWORD';
$targetingIdeaSelector->requestType = 'IDEAS';
$targetingIdeaSelector-
>requestedAttributeTypes=array
( 'KEYWORD','GLOBAL_MONTHLY_SEARCHES' );
$targetingIdeaSelector->paging = new
Paging(0,5);
$page = $keywordService-
>get($targetingIdeaSelector);
print_r($page);
} catch (Exception $e) {
print_r($e);
}
?>
#############
Whatever I try, it ends up in american (or english?) results.
Thanks for your help,
Huggy
--
You received this message because you are subscribed to the Google Groups
"AdWords API Forum" group.
To post to this group, send email to [email protected].
To unsubscribe from this group, send email to
[email protected].
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en.