如何使用 AdWords MutateJobService 创建营销活动层次结构?
使用 AdWords API 创建从广告系列到广告/关键字的整个广告系列层次结构的最便宜的方法是什么?
我有一个用于创建/组织广告系列、广告组和广告/关键字的工具。我将通过 AdWords API 将此数据发送给 Google。
有没有一种方法可以在一个 MutateJobService 中完成所有这些工作?
从我的所有研究来看,做到这一点的唯一方法似乎是
- 创建营销活动作业。
- 等待它完成,提取所有营销活动 ID 并将它们与广告组进行匹配。
- 创建 AdGroups 作业。
- 等待它完成,提取所有广告组 ID 并将它们与广告/关键字进行匹配。
- 创建广告/关键字作业。
有没有一种简单的方法让我不知何故失踪?
What's the least expensive way to create the entire Campaign hierarchy, from the Campaign down to the Ads/Keywords, using the AdWords API?
I have a tool for creating/organizing Campaigns, AdGroups, and Ads/Keywords. I'm sending this data to Google via the AdWords API.
Is there a way to do all of this in one single MutateJobService?
From all my research it seems the only way to do this is by
- Creating the Campaigns job.
- waiting for it to finish, extracting all Campaign ids and matching them to the AdGroups.
- Creating an AdGroups job.
- waiting for it to finish, extracting all AdGroup ids and matching them to the ads/keywords.
- Creating an Ads/Keywords job.
Is there a simple way that I'm somehow missing?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
由于依赖 ID,目前无法在单个作业中添加整个帐户层次结构。一般来说,帐户中的广告系列和广告组数量相对较少,因此可能值得使用同步 CampaignService 和 AdGroupService 来创建它们,而不是等待作业。
仅供参考:将来您可能需要将这些问题发布到官方 AdWords API 论坛:http:// /code.google.com/apis/adwords/community/
There is currently no way to add an entire account hierarchy in a single job, because of depending IDs. In general the number of campaigns and ad groups in an account is relatively small, and it may be worth using the synchronous CampaignService and AdGroupService to create them instead of waiting on jobs.
FYI: In the future you may want to post these questions to the official AdWords API forum: http://code.google.com/apis/adwords/community/