视频广告系列
使用集合让一切井井有条
根据您的偏好保存内容并对其进行分类。
您可以使用视频广告系列在 YouTube 及其他网站上投放视频广告。
API 限制
Google Ads API 仅支持提取现有视频广告系列及其条件的报告。您无法使用 Google Ads API 制作新的视频广告系列或更新现有的视频广告系列。
广告系列管理替代方案
如果您需要以程序化方式制作或管理视频广告系列,可以考虑以下选项:
- Google Ads 脚本:您可以使用 Google Ads 脚本管理视频广告系列。这样一来,您就可以在 Google Ads 界面中自动管理这些广告系列。
- 需求开发广告系列:如果您希望在包括 YouTube 在内的 Google 媒体资源中投放视频广告,则 Google Ads API 完全支持需求开发广告系列的创建和管理。
报告
您可以使用 GoogleAdsService.SearchStream
检索视频广告系列及其广告和条件的表现数据,方法是按 campaign.advertising_channel_type = 'VIDEO'
进行过滤,如以下示例所示:
SELECT
campaign.name,
campaign.advertising_channel_type,
ad_group.name,
ad_group.id,
metrics.impressions,
metrics.clicks,
metrics.ctr
FROM video
WHERE campaign.advertising_channel_type = 'VIDEO'
如未另行说明,那么本页面中的内容已根据知识共享署名 4.0 许可获得了许可,并且代码示例已根据 Apache 2.0 许可获得了许可。有关详情,请参阅 Google 开发者网站政策。Java 是 Oracle 和/或其关联公司的注册商标。
最后更新时间 (UTC):2025-08-27。
[null,null,["最后更新时间 (UTC):2025-08-27。"],[],[],null,["# Video campaigns\n\n[Video campaigns](//support.google.com/google-ads/answer/2375497) let you show\nvideo ads on YouTube and other websites.\n\nAPI limitations\n---------------\n\nThe Google Ads API only supports fetching and reporting on existing Video campaigns\nand their criteria. You cannot create new Video campaigns or update existing\nVideo campaigns using the Google Ads API.\n\n### Alternatives for campaign management\n\nIf you need to create or manage Video campaigns programmatically, consider\nthe following options:\n\n- **Google Ads scripts** : You can manage Video campaigns using [Google Ads scripts](/google-ads/scripts/docs/features/video-campaigns). This allows for automated management within the Google Ads interface.\n- **Demand Gen campaigns** : If your goal is to serve video ads across Google properties including YouTube, [Demand Gen campaigns](/google-ads/api/docs/demand-gen/overview) are fully supported in the Google Ads API for both creation and management.\n\nReporting\n---------\n\nYou can retrieve performance data for your Video campaigns and their ads and\ncriteria using [`GoogleAdsService.SearchStream`](/google-ads/api/reference/rpc/v21/GoogleAdsService.SearchStream)\nby filtering for `campaign.advertising_channel_type = 'VIDEO'` such as in this\nexample: \n\n SELECT\n campaign.name,\n campaign.advertising_channel_type,\n ad_group.name,\n ad_group.id,\n metrics.impressions,\n metrics.clicks,\n metrics.ctr\n FROM video\n WHERE campaign.advertising_channel_type = 'VIDEO'"]]