Einstellungen für die Asset-Automatisierung

In Google Ads stehen verschiedene Asset-Optimierungen zur Verfügung, die automatisch vorgenommen werden können, um die Anzeigeneffektivität Ihrer Anzeigen zu verbessern.

Das reicht von der automatischen Erstellung von Bild-Assets mit einer Vorschau der Landingpage einer Anzeige bis hin zur Optimierung von Video-Assets für verschiedene Formate und Längen.

Jede Einstellung für die Asset-Automatisierung hat einen asset_automation_type, der den Typ der Asset-Automatisierung definiert, und einen asset_automation_status, der angibt, ob die Automatisierung aktiviert oder deaktiviert ist.

Einige Asset-Automatisierungen werden auf Kampagnenebene konfiguriert, andere auf Anzeigengruppenebene.

Einstellungen für die Asset-Automatisierung auf Kampagnenebene

Damit wird eine Asset-Automatisierung für eine gesamte Kampagne konfiguriert. Nicht alle sind für jeden Kampagnentyp verfügbar. Weitere Informationen finden Sie in der Referenzdokumentation.

Art der Asset-Automatisierung Unterstützte Kampagnentypen Standard
AUTOMATED_VIDEO_CRAWL Performance Max-Kampagne

Deaktiviert (ab Version 25 verfügbar)

Ermöglicht es Google, Videos von Ihrer Landingpage, Ihrem YouTube-Kanal und Ihren organischen Social-Media-Kanälen zu finden und zu verwenden, die auf Ihrer Landingpage verlinkt sind. Wenn Sie die Funktion aktivieren, können Sie das Feld automated_video_crawl_setting konfigurieren.

FINAL_URL_EXPANSION_TEXT_ASSET_AUTOMATION Performance Max-Kampagnen, Suchkampagnen

Für Performance Max-Kampagnen aktiviert, für Suchkampagnen deaktiviert.

Hinweis:Wenn Sie die Erweiterung der finalen URL aktivieren, generiert Google dynamisch Text-Assets (Anzeigentitel und Textzeilen), die dem Inhalt der dynamisch ausgewählten Landingpages entsprechen. Wenn die Erweiterung der finalen URL aktiv ist, kann diese Einstellung nicht deaktiviert werden. Im Gegensatz dazu wird bei der Standard-TEXT_ASSET_AUTOMATION (Textanpassung) der Text für alle Anzeigen in der Kampagne angepasst.

GENERATE_ENHANCED_YOUTUBE_VIDEOS Performance Max-Kampagne Aktiviert
GENERATE_IMAGE_ENHANCEMENT Performance Max-Kampagne Aktiviert
GENERATE_IMAGE_EXTRACTION Performance Max-Kampagne Der Kontrollwert für dynamische Bilderweiterungen auf Kontoebene.

Hinweis:Diese Einstellung auf Kontoebene kann nur in der Google Ads-Weboberfläche konfiguriert werden.

TEXT_ASSET_AUTOMATION Performance Max-Kampagnen, Suchkampagnen Für Performance Max-Kampagnen aktiviert, für Suchkampagnen deaktiviert

Im folgenden Snippet sehen Sie, wie Sie die Einstellungen für die Asset-Automatisierung für eine Performance Max-Kampagne auf OPTED_IN festlegen:

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

Einstellungen für die Asset-Automatisierung auf Anzeigenebene

Damit wird eine Asset-Automatisierung für eine einzelne Anzeige konfiguriert. Nicht alle sind für jeden Anzeigentyp verfügbar. Weitere Informationen finden Sie in der Referenzdokumentation.

Art der Asset-Automatisierung Unterstützte Anzeigentypen Standard
GENERATE_ANIMATED_IMAGES_FROM_OTHER_ASSETS DemandGenMultiAssetAd Aktiviert (ab Version 25)
GENERATE_DESIGN_VERSIONS_FOR_IMAGES DemandGenMultiAssetAd Aktiviert
GENERATE_LANDING_PAGE_PREVIEW DemandGenVideoResponsiveAd Deaktiviert
GENERATE_LANDING_PAGE_TEXT DemandGenVideoResponsiveAd Aktiviert (ab Version 24)
GENERATE_SHORTER_YOUTUBE_VIDEOS DemandGenVideoResponsiveAd Aktiviert
GENERATE_VERTICAL_YOUTUBE_VIDEOS DemandGenVideoResponsiveAd Aktiviert
GENERATE_VIDEOS_FROM_OTHER_ASSETS DemandGenMultiAssetAd Aktiviert

Richtlinien für Text

Mit Richtlinien für Text (ab Version 23 verfügbar) können Sie Markenbotschaften für automatisch generierte Text-Assets in Performance Max- und AI Max-Kampagnen optimieren, indem Sie Begriffsausschlüsse und Einschränkungen für Werbetexte angeben.

Wenn Sie Richtlinien für Text verwenden möchten, füllen Sie das Feld text_guidelines der Ressource Campaign aus:

  • Begriffsausschlüsse: Geben Sie eine Liste mit genauen Wörtern oder Wortgruppen an, die aus generierten Text-Assets ausgeschlossen werden sollen. Jeder Ausschluss kann bis zu 30 Zeichen lang sein. Es sind maximal 25 Ausschlüsse möglich.
  • Einschränkungen für Werbetexte: Geben Sie Freiformanweisungen (jeweils bis zu 300 Zeichen) an, um die KI-Textgenerierung zu steuern. Sie können bis zu 40 Einschränkungen angeben. Nur RESTRICTION_BASED_EXCLUSION wird für den Einschränkungstyp unterstützt.

Einstellungen für die automatisierte Videosuche

Mit dem automatisierten Video-Crawling (ab Version 25 verfügbar, auch als „Videos aus Quellen“ bezeichnet) kann Google relevante Videos aus genehmigten Quellen für Performance Max-Kampagnen ermitteln und verwenden. So lässt sich die Anzeigenleistung steigern, ohne dass Videos manuell hochgeladen werden müssen.

So verwenden Sie die automatisierte Videosuche:

  1. Setzen Sie den Wert asset_automation_type auf AUTOMATED_VIDEO_CRAWL.
  2. Setzen Sie den Wert asset_automation_status auf OPTED_IN.
  3. Konfigurieren Sie das Feld automated_video_crawl_setting von AssetAutomationSetting mit einem oder mehreren AutomatedVideoCrawlInfo-Einträgen in automated_video_crawl_infos:

    • url: Die URL, die gecrawlt werden soll, z. B. Ihre Landingpage, Ihr Profil in sozialen Medien oder Ihr YouTube-Kanal.
    • source_platform: Die VideoCrawlSourcePlatform, die den Quelltyp darstellt:
      • LANDING_PAGE: Videos, die auf der Landingpage des Werbetreibenden gefunden wurden.
      • SOCIAL: Organische Social-Video-URLs, die auf der Landingpage des Werbetreibenden verlinkt sind (Facebook, Instagram, X, LinkedIn, TikTok).
      • YOUTUBE: Videos vom YouTube-Kanal des Werbetreibenden.
    • enabled: Ein boolescher Wert, der angibt, ob diese Quell-URL genehmigt und für das Crawling aktiviert ist.