如何使用 AdWords MutateJobService 创建营销活动层次结构?

发布于 2024-12-13 23:02:27 字数 493 浏览 0 评论 0原文

使用 AdWords API 创建从广告系列到广告/关键字的整个广告系列层次结构的最便宜的方法是什么?

我有一个用于创建/组织广告系列、广告组和广告/关键字的工具。我将通过 AdWords API 将此数据发送给 Google。

有没有一种方法可以在一个 MutateJobService 中完成所有这些工作?

从我的所有研究来看,做到这一点的唯一方法似乎是

  1. 创建营销活动作业。
  2. 等待它完成,提取所有营销活动 ID 并将它们与广告组进行匹配。
  3. 创建 AdGroups 作业。
  4. 等待它完成,提取所有广告组 ID 并将它们与广告/关键字进行匹配。
  5. 创建广告/关键字作业。

有没有一种简单的方法让我不知何故失踪?

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

  1. Creating the Campaigns job.
  2. waiting for it to finish, extracting all Campaign ids and matching them to the AdGroups.
  3. Creating an AdGroups job.
  4. waiting for it to finish, extracting all AdGroup ids and matching them to the ads/keywords.
  5. Creating an Ads/Keywords job.

Is there a simple way that I'm somehow missing?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

鸵鸟症 2024-12-20 23:02:27

由于依赖 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/

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文