Google Ads มีการเพิ่มประสิทธิภาพชิ้นงานหลายอย่างที่สามารถดำเนินการได้โดยอัตโนมัติ เพื่อปรับปรุงคุณภาพของโฆษณา
ซึ่งมีตั้งแต่การสร้างชิ้นงานรูปภาพโดยอัตโนมัติพร้อมตัวอย่างหน้า Landing Page ของโฆษณา ไปจนถึงการเพิ่มประสิทธิภาพชิ้นงานวิดีโอสำหรับรูปแบบและความยาวต่างๆ
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานแต่ละรายการจะมี
asset_automation_type ซึ่งกำหนดประเภท
การทำงานอัตโนมัติของชิ้นงานที่แสดง และ
asset_automation_status ซึ่งแสดงว่า
เปิดหรือปิดใช้การทำงานอัตโนมัติ
ระบบจะกําหนดค่าการทำงานอัตโนมัติของชิ้นงานบางรายการที่ระดับแคมเปญ ส่วนรายการอื่นๆ จะกำหนดค่าที่ระดับโฆษณากลุ่มโฆษณา
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานระดับแคมเปญ
ซึ่งจะกำหนดค่าการทำงานอัตโนมัติของชิ้นงานสำหรับทั้งแคมเปญ แต่บางรายการอาจไม่พร้อมใช้งานสำหรับแคมเปญบางประเภท โปรดดูรายละเอียดเพิ่มเติมในเอกสารอ้างอิง
| ประเภทการทำงานอัตโนมัติของชิ้นงาน | ประเภทแคมเปญที่รองรับ | ค่าเริ่มต้น |
|---|---|---|
| AUTOMATED_VIDEO_CRAWL | Performance Max |
ปิดใช้ (พร้อมใช้งานตั้งแต่เวอร์ชัน 25) อนุญาตให้ Google ค้นหาและใช้วิดีโอจากหน้า Landing Page, ช่อง YouTube และช่องทางโซเชียลทั่วไปที่ลิงก์ไว้ในหน้า Landing Page เมื่อ
เลือกใช้ คุณจะกําหนดค่า
ฟิลด์ |
| FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION | Performance Max, Search |
เปิดใช้สําหรับ Performance Max ปิดใช้สําหรับ Search หมายเหตุ: การเปิดใช้ Final URL Expansion จะทําให้ Google สร้างชิ้นงานข้อความ (บรรทัดแรกและคําอธิบาย) แบบไดนามิกให้ตรงกับ เนื้อหาของหน้า Landing Page ที่เลือกแบบไดนามิก คุณจะเลือกไม่ใช้ตัวเลือกนี้ไม่ได้หาก Final URL Expansion ทำงานอยู่ เปรียบเทียบกับ TEXT_ASSET_AUTOMATION (การปรับแต่งข้อความ) มาตรฐาน ซึ่งปรับแต่งข้อความในโฆษณาทั้งหมดใน แคมเปญ |
| GENERATE_ENHANCED_YOUTUBE_VIDEOS | Performance Max | เปิดใช้อยู่ |
| GENERATE_IMAGE_ENHANCEMENT | Performance Max | เปิดใช้อยู่ |
| GENERATE_IMAGE_EXTRACTION | Performance Max |
ค่าควบคุมส่วนขยายรูปภาพแบบไดนามิกระดับบัญชี หมายเหตุ: การตั้งค่าระดับบัญชีนี้จะกำหนดค่าได้ใน อินเทอร์เฟซเว็บของ Google Ads เท่านั้น |
| TEXT_ASSET_AUTOMATION | Performance Max, Search | เปิดใช้สําหรับ Performance Max ปิดใช้สําหรับ Search |
ข้อมูลโค้ดต่อไปนี้แสดงวิธีตั้งค่าระบบอัตโนมัติของชิ้นงานเป็น OPTED_IN
สําหรับแคมเปญ Performance Max
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::V25::Resources::AssetAutomationSetting->new({ assetAutomationStatus => OPTED_IN, assetAutomationType => $asset_automation_type }); }
curl
การตั้งค่าการทำงานอัตโนมัติของชิ้นงานระดับโฆษณา
ซึ่งจะกำหนดค่าการทำงานอัตโนมัติของชิ้นงานสำหรับโฆษณาชิ้นเดียว แต่ไม่ใช่ทุกรายการที่จะใช้ได้กับประเภทโฆษณาทุกประเภท โปรดดูรายละเอียดเพิ่มเติมในเอกสารอ้างอิง
| ประเภทการทำงานอัตโนมัติของชิ้นงาน | ประเภทโฆษณาที่รองรับ | ค่าเริ่มต้น |
|---|---|---|
| GENERATE_ANIMATED_IMAGES_FROM_OTHER_ASSETS | DemandGenMultiAssetAd | เปิดใช้ (ตั้งแต่เวอร์ชัน 25) |
| GENERATE_DESIGN_VERSIONS_FOR_IMAGES | DemandGenMultiAssetAd | เปิดใช้อยู่ |
| GENERATE_LANDING_PAGE_PREVIEW | DemandGenVideoResponsiveAd | ปิดใช้ |
| GENERATE_LANDING_PAGE_TEXT | DemandGenVideoResponsiveAd | เปิดใช้ (เริ่มใน v24) |
| GENERATE_SHORTER_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | เปิดใช้อยู่ |
| GENERATE_VERTICAL_YOUTUBE_VIDEOS | DemandGenVideoResponsiveAd | เปิดใช้อยู่ |
| GENERATE_VIDEOS_FROM_OTHER_ASSETS | DemandGenMultiAssetAd | เปิดใช้อยู่ |
หลักเกณฑ์เกี่ยวกับข้อความ
หลักเกณฑ์เกี่ยวกับข้อความ (พร้อมใช้งานตั้งแต่เวอร์ชัน 23) ช่วยให้คุณปรับแต่งข้อความของแบรนด์ สําหรับชิ้นงานข้อความที่สร้างขึ้นโดยอัตโนมัติในแคมเปญ Performance Max และ AI Max โดยการระบุการยกเว้นคำและข้อจํากัดเกี่ยวกับข้อความ
หากต้องการใช้หลักเกณฑ์เกี่ยวกับข้อความ ให้ป้อนข้อมูลในช่อง
text_guidelines ของแหล่งข้อมูล
Campaign
- การยกเว้นคำ: ระบุรายการคำหรือวลีที่ตรงกันที่จะยกเว้น จากชิ้นงานข้อความที่สร้างขึ้น การยกเว้นแต่ละรายการมีความยาวได้สูงสุด 30 อักขระ โดยมี การยกเว้นได้สูงสุด 25 รายการ
- ข้อจำกัดเกี่ยวกับข้อความ: ระบุวิธีการแบบอิสระ (สูงสุด 300 อักขระต่อรายการ) เพื่อเป็นแนวทางในการสร้างข้อความ AI คุณระบุข้อจำกัดได้สูงสุด 40 รายการ รองรับเฉพาะ
RESTRICTION_BASED_EXCLUSIONสำหรับประเภทการจำกัด
การตั้งค่าการ Crawl วิดีโออัตโนมัติ
การ Crawl วิดีโออัตโนมัติ (พร้อมใช้งานตั้งแต่ v25 หรือที่เรียกว่าวิดีโอที่มาจากแหล่งที่มา ด้วย) ช่วยให้ Google ค้นพบและใช้วิดีโอที่เกี่ยวข้องจากแหล่งที่มาที่ได้รับอนุมัติ สําหรับแคมเปญ Performance Max ซึ่งจะช่วยปรับปรุงประสิทธิภาพโฆษณาโดยไม่ต้อง อัปโหลดวิดีโอด้วยตนเอง
วิธีใช้การ Crawl วิดีโออัตโนมัติ
- ตั้งค่า
asset_automation_typeเป็นAUTOMATED_VIDEO_CRAWL - ตั้งค่า
asset_automation_statusเป็นOPTED_IN กำหนดค่าฟิลด์
automated_video_crawl_settingของAssetAutomationSettingด้วยรายการAutomatedVideoCrawlInfoอย่างน้อย 1 รายการในautomated_video_crawl_infosurl: URL ที่จะรวมไว้สำหรับการ Crawl (เช่น หน้า Landing Page, โปรไฟล์โซเชียล หรือช่อง YouTube)source_platform: TheVideoCrawlSourcePlatformrepresenting the type of source:LANDING_PAGE: วิดีโอที่พบในหน้า Landing Page ของผู้ลงโฆษณาSOCIAL: URL วิดีโอโซเชียลทั่วไปที่ลิงก์ในหน้า Landing Page ของผู้ลงโฆษณา (Facebook, Instagram, X, LinkedIn, TikTok)YOUTUBE: วิดีโอจากช่อง YouTube ของผู้ลงโฆษณา
enabled: บูลีนที่ระบุว่า URL แหล่งที่มานี้ได้รับอนุมัติและเปิดใช้สำหรับการ Crawl หรือไม่