Mit Sammlungen den Überblick behalten
Sie können Inhalte basierend auf Ihren Einstellungen speichern und kategorisieren.
Empfehlungen werden automatisch von Google Ads generiert und enthalten Ideen zur Optimierung Ihres Kontos. So können Sie beispielsweise das Kampagnenbudget für eine eingeschränkte Kampagne erhöhen oder relevante Keywords hinzufügen. Eine vollständige Liste der Empfehlungstypen finden Sie in der Google Ads API-Dokumentation.
Empfehlungen abrufen
Verwenden Sie die Auswahl AdsApp.recommendations(), um Empfehlungen abzurufen. Sie funktioniert ähnlich wie andere Auswahlen, sodass Sie Bedingungen für die Art der Empfehlungen festlegen können, die zurückgegeben werden sollen:
constselector=AdsApp.recommendations().withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');constrecommendations=selector.get();
Empfehlungen übernehmen
So wenden Sie die Empfehlungen an, nachdem Sie sie abgerufen haben:
for(constrecommendationofrecommendations){// Perform whatever check here that works for your use case.// You can also potentially skip this step if you've sufficiently narrowed// down what recommendations you're selecting initially with customized// withCondition clauses in the previous step.if(shouldApply(recommendation)){recommendation.apply();}}
[[["Leicht verständlich","easyToUnderstand","thumb-up"],["Mein Problem wurde gelöst","solvedMyProblem","thumb-up"],["Sonstiges","otherUp","thumb-up"]],[["Benötigte Informationen nicht gefunden","missingTheInformationINeed","thumb-down"],["Zu umständlich/zu viele Schritte","tooComplicatedTooManySteps","thumb-down"],["Nicht mehr aktuell","outOfDate","thumb-down"],["Problem mit der Übersetzung","translationIssue","thumb-down"],["Problem mit Beispielen/Code","samplesCodeIssue","thumb-down"],["Sonstiges","otherDown","thumb-down"]],["Zuletzt aktualisiert: 2025-06-03 (UTC)."],[[["Google Ads automatically generates recommendations to optimize your account, including suggestions like budget increases and keyword additions."],["You can retrieve specific recommendations using the `AdsApp.recommendations()` selector and filtering by recommendation type."],["Before applying a recommendation, ensure it aligns with your campaign goals and advertising policies, especially when adding new keywords."],["Applying recommendations is done using the `apply()` method after fetching and potentially filtering them."]]],[]]