我的 AdWords iOS 应用使用 google AdWords API 生成一个获取相关关键字列表的请求。
它使用的是 TargetingIdeaService API。https://developers.google.com/adwords/api/docs/reference/latest/TargetingIdeaService
它工作正常,使用 v201109 API。现在已被替换。当前(在撰写本文时)版本是 v201209。
使用 RelatedToKeywordSearchParameter 现在会返回错误。
请求网址: https ://adwords.google.com/api/adwords/o/v201209/TargetingIdeaService
正文(搜索与香蕉相关的词):
<env:Body>
<get xmlns="https://adwords.google.com/api/adwords/o/v201209">
<selector>
<searchParameters xsi:type="RelatedToKeywordSearchParameter">
<wsdl:keywords>
<cm:text>banana</cm:text>
<cm:matchType>EXACT</cm:matchType>
</wsdl:keywords>
</searchParameters>
<ideaType>KEYWORD</ideaType>
<requestType>IDEAS</requestType>
<requestedAttributeTypes>COMPETITION</requestedAttributeTypes>
<requestedAttributeTypes>CRITERION</requestedAttributeTypes>
<wsdl:paging>
<cm:startIndex>0</cm:startIndex>
<cm:numberResults>50</cm:numberResults>
</wsdl:paging>
</selector>
</get>
</env:Body>