有兴趣分享您对 Google Ads API 的反馈吗?
注册即可获邀参与用户调研!
资源服务转变
使用资源的单个服务是最直接的转变方式,但也是最不灵活的。
Mutate 端点
使用特定于资源的服务是最直接的转变方法。每种可变资源都有对应的服务以及一组用于创建、更新或移除资源的操作。
假设您要创建一个新的 Campaign
。您需要创建一个新的 Campaign
对象,将其放在 CampaignOperation
内,然后将其发送到 CampaignService.MutateCampaigns
端点。
对于任何 Google Ads API 服务,您都可以执行此项操作。例如,如果您要更改 FeedItem
,则应将包含已转变的 FeedItem
的 FeedItemOperation
传递给 FeedItemService.MutateFeedItems
端点。
由于可以重复相关请求的 operations
字段,因此单个 mutate 请求可以包含多个操作。不过,每个操作都是彼此独立处理的,因此不支持交叉引用。
这与批量转变方法 (GoogleAdsService.Mutate
) 不同,在批量转变方法中,同一请求中的操作可以引用其他操作中的实体。
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2024-06-27。
[null,null,["最后更新时间 (UTC):2024-06-27。"],[[["The most straightforward way to mutate a resource is by using its individual service and corresponding operations (create, update, or remove)."],["Each mutable resource has a dedicated service with specific endpoints for mutation, like `CampaignService.MutateCampaigns` for `Campaign` resources."],["A single mutate request to a resource-specific service can handle multiple operations, but each operation is treated independently."],["Resource-specific mutation differs from bulk mutation (`GoogleAdsService.Mutate`) where operations can cross-reference each other within the same request."]]],[]]