Chiến dịch video
Sử dụng bộ sưu tập để sắp xếp ngăn nắp các trang
Lưu và phân loại nội dung dựa trên lựa chọn ưu tiên của bạn.
Chiến dịch video cho phép bạn hiển thị quảng cáo dạng video trên YouTube và các trang web khác.
Giới hạn của API
API Google Ads chỉ hỗ trợ việc tìm nạp và báo cáo về các chiến dịch Video hiện có và tiêu chí của các chiến dịch đó. Bạn không thể tạo chiến dịch Video mới hoặc cập nhật chiến dịch Video hiện có bằng Google Ads API.
Các lựa chọn thay thế để quản lý chiến dịch
Nếu bạn cần tạo hoặc quản lý chiến dịch Video theo phương thức lập trình, hãy cân nhắc các lựa chọn sau:
- Tập lệnh Google Ads: Bạn có thể quản lý chiến dịch Video bằng tập lệnh Google Ads. Điều này cho phép quản lý tự động trong giao diện Google Ads.
- Chiến dịch Tạo nhu cầu: Nếu mục tiêu của bạn là phân phát quảng cáo dạng video trên các tài sản của Google (bao gồm cả YouTube), thì chiến dịch Tạo nhu cầu được hỗ trợ đầy đủ trong API Google Ads cho cả việc tạo và quản lý.
Báo cáo
Bạn có thể truy xuất dữ liệu hiệu suất cho chiến dịch Video và quảng cáo cũng như tiêu chí của chiến dịch đó bằng cách sử dụng GoogleAdsService.SearchStream
bằng cách lọc theo campaign.advertising_channel_type = 'VIDEO'
, chẳng hạn như trong ví dụ này:
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'
Trừ phi có lưu ý khác, nội dung của trang này được cấp phép theo Giấy phép ghi nhận tác giả 4.0 của Creative Commons và các mẫu mã lập trình được cấp phép theo Giấy phép Apache 2.0. Để biết thông tin chi tiết, vui lòng tham khảo Chính sách trang web của Google Developers. Java là nhãn hiệu đã đăng ký của Oracle và/hoặc các đơn vị liên kết với Oracle.
Cập nhật lần gần đây nhất: 2025-08-27 UTC.
[null,null,["Cập nhật lần gần đây nhất: 2025-08-27 UTC."],[],[],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'"]]