Hi.

This should help you:

$user = new AdWordsUser();

    // Log SOAP XML request and response.
    $user->LogDefaults();

    // Get the TargetingIdeaService.
    $targetingIdeaService = $user->GetTargetingIdeaService('v201008');

    $countryTarget = new CountryTarget('US', false);
    $countryTargetSearchParameter = new
CountryTargetSearchParameter();
    $countryTargetSearchParameter->countryTargets =
array($countryTarget);

    // Create seed keyword.
    $keyword = new Keyword();
    $keyword->text = 'mars cruise';
    $keyword->matchType = 'BROAD';

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

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

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

    // Create keyword match type search parameter to ensure unique
results.
    $keywordMatchTypeSearchParameter = new
KeywordMatchTypeSearchParameter();
    $keywordMatchTypeSearchParameter->keywordMatchTypes =
array('BROAD');

    $selector->searchParameters =
    array($relatedToKeywordSearchParameter,
$keywordMatchTypeSearchParameter, $countryTargetSearchParameter);

    // 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