추천은 Google Ads에서 자동으로 생성되며
특정 캠페인의 캠페인 예산을 늘리는 등 계정 최적화 방법을
관련성 높은 키워드를 추가하는 방식으로 캠페인을 제한할 수 있습니다. Google Ads API 문서에서 추천 유형의 전체 목록을 확인하세요.
추천 가져오기
추천을 가져오려면 AdsApp.recommendations() 선택기를 사용하세요.
이는 다른 선택자와 유사하게 작동하여
표시할 추천 유형:
constselector=AdsApp.recommendations().withCondition('recommendation.type IN (CAMPAIGN_BUDGET)');constrecommendations=selector.get();
권장사항 적용
추천을 가져온 후에는 다음과 같이 적용합니다.
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,["최종 업데이트: 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."]]],[]]