Google 广告 API 中的关键字规划师
Keywords Planner in Google Ads API
我正在尝试以编程方式使用关键字规划师,通过其 API.I 遇到 Generating Targeting Ideas, which pretty much summarizes the use. When I visit Get Started,它指出
Try the new Google Ads API—which has the latest Google Ads features. The AdWords API is in maintenance mode and not being actively developed.
我访问了 Google Ads API,在那里我找不到任何与关键字规划师相关的内容。
有人知道计划器是否可以通过新的 API 获得,还是我必须使用旧的?
谢谢,
亚历克西斯
我目前正在将旧的 Adwords cron 作业转换为新的 Ads API。虽然我不确定这是否正是您要查找的内容,但旧的 TargetingIdeaService
已替换为新的 KeywordPlanIdeaService
(请参阅 https://developers.google.com/google-ads/api/docs/migration/services)。
您可以在此处找到 KeywordPlanIdeaService 的示例:
https://developers.google.com/google-ads/api/docs/samples/generate-keyword-ideas
请特别注意代码如何设置每个选择器字段的格式以及如何使用助手 class 设置语言和地理定位代码的格式。这不是最直观的参数传递方式。
我正在尝试以编程方式使用关键字规划师,通过其 API.I 遇到 Generating Targeting Ideas, which pretty much summarizes the use. When I visit Get Started,它指出
Try the new Google Ads API—which has the latest Google Ads features. The AdWords API is in maintenance mode and not being actively developed.
我访问了 Google Ads API,在那里我找不到任何与关键字规划师相关的内容。
有人知道计划器是否可以通过新的 API 获得,还是我必须使用旧的?
谢谢,
亚历克西斯
我目前正在将旧的 Adwords cron 作业转换为新的 Ads API。虽然我不确定这是否正是您要查找的内容,但旧的 TargetingIdeaService
已替换为新的 KeywordPlanIdeaService
(请参阅 https://developers.google.com/google-ads/api/docs/migration/services)。
您可以在此处找到 KeywordPlanIdeaService 的示例: https://developers.google.com/google-ads/api/docs/samples/generate-keyword-ideas
请特别注意代码如何设置每个选择器字段的格式以及如何使用助手 class 设置语言和地理定位代码的格式。这不是最直观的参数传递方式。