Google Ads cung cấp một số tính năng tối ưu hoá thành phần có thể được thực hiện tự động để cải thiện điểm chất lượng quảng cáo.
Các tính năng này bao gồm từ việc tự động tạo thành phần hình ảnh có bản xem trước trang đích của quảng cáo đến việc tối ưu hoá thành phần video cho nhiều định dạng và độ dài khác nhau.
Mỗi chế độ cài đặt tự động hoá thành phần đều có một asset_automation_type,
xác định loại tự động hoá thành phần mà chế độ đó đại diện và một asset_automation_status,
cho biết liệu tính năng tự động hoá có được bật hay tắt.
Một số tính năng tự động hoá thành phần được định cấu hình ở cấp chiến dịch, trong khi những tính năng khác được đặt ở cấp quảng cáo của nhóm quảng cáo.
Chế độ cài đặt tự động hoá thành phần ở cấp chiến dịch
Các chế độ cài đặt này định cấu hình tính năng tự động hoá thành phần cho toàn bộ chiến dịch. Không phải mọi chế độ cài đặt đều có sẵn cho mọi loại chiến dịch: hãy tham khảo tài liệu tham khảo để biết thêm thông tin chi tiết.
| Loại hình tự động hoá thành phần | Các loại chiến dịch được hỗ trợ | Mặc định |
|---|---|---|
| FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION | Tối đa hoá hiệu suất, Tìm kiếm | Bật cho chiến dịch Tối đa hoá hiệu suất, tắt cho chiến dịch Tìm kiếm |
| GENERATE_ENHANCED_YOUTUBE_VIDEOS | Tối đa hoá hiệu suất | Đang bật |
| GENERATE_IMAGE_ENHANCEMENT | Tối đa hoá hiệu suất | Bật cho chiến dịch Tối đa hoá hiệu suất, tắt cho chiến dịch Tìm kiếm |
| GENERATE_IMAGE_EXTRACTION | Tối đa hoá hiệu suất |
Giá trị kiểm soát Phần mở rộng về hình ảnh linh hoạt ở cấp tài khoản. Lưu ý: Bạn chỉ có thể định cấu hình chế độ cài đặt cấp tài khoản này trong giao diện web Google Ads. |
| TEXT_ASSET_AUTOMATION | Tối đa hoá hiệu suất, Tìm kiếm | Bật cho chiến dịch Tối đa hoá hiệu suất, tắt cho chiến dịch Tìm kiếm |
Đoạn mã sau đây cho biết cách đặt chế độ cài đặt tự động hoá thành phần thành OPT_IN cho chiến dịch Tối đa hoá hiệu suất:
Java
// Configures the optional opt-in/out status for asset automation settings. .addAllAssetAutomationSettings(ImmutableList.of( AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_EXTRACTION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType( AssetAutomationType.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.TEXT_ASSET_AUTOMATION) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_ENHANCED_YOUTUBE_VIDEOS) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build(), AssetAutomationSetting.newBuilder() .setAssetAutomationType(AssetAutomationType.GENERATE_IMAGE_ENHANCEMENT) .setAssetAutomationStatus(AssetAutomationStatus.OPTED_IN).build()))
C#
campaign.AssetAutomationSettings.AddRange(new[]{ new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateImageExtraction, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.FinalUrlExpansionTextAssetAutomation, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.TextAssetAutomation, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateEnhancedYoutubeVideos, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, new Campaign.Types.AssetAutomationSetting { AssetAutomationType = AssetAutomationType.GenerateImageEnhancement, AssetAutomationStatus = AssetAutomationStatus.OptedIn }, });
PHP
This example is not yet available in PHP; you can take a look at the other languages.
Python
# Configures the optional opt-in/out status for asset automation settings. for asset_automation_type_enum in [ client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_EXTRACTION, client.enums.AssetAutomationTypeEnum.FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION, client.enums.AssetAutomationTypeEnum.TEXT_ASSET_AUTOMATION, client.enums.AssetAutomationTypeEnum.GENERATE_ENHANCED_YOUTUBE_VIDEOS, client.enums.AssetAutomationTypeEnum.GENERATE_IMAGE_ENHANCEMENT, ]: asset_automattion_setting: Campaign.AssetAutomationSetting = ( client.get_type("Campaign").AssetAutomationSetting() ) asset_automattion_setting.asset_automation_type = ( asset_automation_type_enum ) asset_automattion_setting.asset_automation_status = ( client.enums.AssetAutomationStatusEnum.OPTED_IN ) campaign.asset_automation_settings.append(asset_automattion_setting)
Ruby
# Configures the optional opt-in/out status for asset automation settings. c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_IMAGE_EXTRACTION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :TEXT_ASSET_AUTOMATION aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_ENHANCED_YOUTUBE_VIDEOS aas.asset_automation_status = :OPTED_IN end c.asset_automation_settings << client.resource.asset_automation_setting do |aas| aas.asset_automation_type = :GENERATE_IMAGE_ENHANCEMENT aas.asset_automation_status = :OPTED_IN end
Perl
# Configures the optional opt-in/out status for asset automation settings. # When we create the campaign object, we set campaign->{assetAutomationSettings} # equal to $asset_automation_settings. my $asset_automation_settings = []; my $asset_automation_types = [ GENERATE_IMAGE_EXTRACTION, FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION, TEXT_ASSET_AUTOMATION, GENERATE_ENHANCED_YOUTUBE_VIDEOS, GENERATE_IMAGE_ENHANCEMENT ]; foreach my $asset_automation_type (@$asset_automation_types) { push @$asset_automation_settings, Google::Ads::GoogleAds::V24::Resources::AssetAutomationSetting->new({ assetAutomationStatus => OPTED_IN, assetAutomationType => $asset_automation_type }); }
curl
Chế độ cài đặt tự động hoá thành phần ở cấp quảng cáo
Các chế độ cài đặt này định cấu hình tính năng tự động hoá thành phần cho một quảng cáo. Không phải mọi chế độ cài đặt đều có sẵn cho mọi loại quảng cáo: hãy tham khảo tài liệu tham khảo để biết thêm thông tin chi tiết.
| Loại hình tự động hoá thành phần | Các loại quảng cáo được hỗ trợ | Mặc định |
|---|---|---|
| GENERATE_DESIGN_VERSIONS_FOR_IMAGES | DemandGenMultiAssetAd | Đang bật |
| GENERATE_LANDING_PAGE_PREVIEW | DemandgenVideoResponsiveAd | Đã tắt |
| GENERATE_SHORTER_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | Đang bật |
| GENERATE_VERTICAL_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | Đang bật |
| GENERATE_VIDEOS_FROM_OTHER_ASSETS | DemandGenMultiAssetAds | Đang bật |
Nguyên tắc về văn bản
Nguyên tắc về văn bản cho phép bạn tinh chỉnh thông điệp thương hiệu cho các thành phần văn bản được tạo tự động trong chiến dịch Tối đa hoá hiệu suất và chiến dịch AI Tối đa hoá bằng cách chỉ định các cụm từ bị loại trừ và quy định hạn chế về thông điệp.
Để sử dụng nguyên tắc về văn bản, hãy điền vào trường
text_guidelines của tài nguyên
Campaign:
- Cụm từ bị loại trừ: Cung cấp danh sách các từ hoặc cụm từ chính xác cần loại trừ khỏi thành phần văn bản được tạo. Mỗi cụm từ bị loại trừ có thể có tối đa 30 ký tự và tối đa 25 cụm từ bị loại trừ.
- Quy định hạn chế về thông điệp: Cung cấp hướng dẫn ở dạng tự do (tối đa 300
ký tự mỗi hướng dẫn) để hướng dẫn AI tạo văn bản. Bạn có thể cung cấp tối đa 40 quy định hạn chế. Chỉ
RESTRICTION_BASED_EXCLUSIONđược hỗ trợ cho loại quy định hạn chế.