我已经了解了如何使用Google Adwords API(PHP库),但它似乎与The Adwords Interface做了类似的事情,并为您提供加载推荐的关键字和他们的相对“全球月度搜索” - 我只需要全球每月搜索我正在寻找的特定关键字。
有一种简单的方法吗?甚至可能没有完整的Adwords API?
答案 0 :(得分:3)
使用AdWords API,您可以直接请求关键字的统计信息,而不是请求列表。您需要使用TargetingIdeaService并在选择器中指定requestType
STATS
而不是IDEAS
:
在http://www.google.com/codesearch/p?hl=en#Fu0vUbQ37f4/trunk/examples/v201008/GetRelatedKeywords.php试用PHP示例并替换以下行:
$selector->requestType = 'IDEAS';
使用:
$selector->requestType = 'STATS';