建議

Google Ads 會自動產生最佳化建議,並提供有關帳戶最佳化的建議,例如為有限的廣告活動提高廣告活動預算,或是新增相關關鍵字。如需建議類型的完整清單,請參閱 Google Ads API 說明文件

擷取建議

如要擷取建議,請使用 AdsApp.recommendations() 選取器。這個選取器的運作方式與其他選取器類似,可讓您指定要傳回哪種類型的建議條件:

const selector = AdsApp.recommendations()
  .withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');
const recommendations = selector.get();

套用最佳化建議

擷取建議後,請按照下列方式套用建議:

for (const recommendation of recommendations) {
  // 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();
  }
}