추천은 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();
}
}