2

我已经研究过使用 Google Adwords API(PHP 库),但它似乎与Adwords 界面所做的类似,并为您提供了大量推荐的关键字及其相关的“全球每月搜索量”——我只需要全球每月搜索我正在寻找的特定关键字。

有没有一种简单的方法可以做到这一点?也许即使没有完整的 Adwords API?

4

1 回答 1

3

使用 AdWords API,可以只请求关键字的统计信息,而不是提示列表。您需要使用 TargetingIdeaService 并在选择器中指定 a requestTypeofSTATS而不是IDEAS

在http://www.google.com/codesearch/p?hl=en#Fu0vUbQ37f4/trunk/examples/v201008/GetRelatedKeywords.php试用 PHP 示例并替换以下行:

$selector->requestType = 'IDEAS';

和:

$selector->requestType = 'STATS';

于 2011-03-03T22:11:40.910 回答