I consigli vengono generati automaticamente da Google Ads e forniscono idee su come ottimizzare il tuo account, ad esempio aumentando il budget della campagna per una campagna limitata o aggiungendo parole chiave pertinenti. Consulta l'elenco completo
i tipi di consigli nel
documentazione dell'API Google Ads.
Recuperare i consigli
Per recuperare i consigli, utilizza il selettore AdsApp.recommendations(),
che funziona in modo simile ad altri selettori in quanto consente di specificare le condizioni per i tipi di consigli da restituire:
constselector=AdsApp.recommendations().withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');constrecommendations=selector.get();
Applicare i consigli
Dopo aver recuperato i consigli, applicali nel seguente modo:
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();}}
[null,null,["Ultimo aggiornamento 2025-03-04 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."]]],[]]