추천은 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();}}
[[["이해하기 쉬움","easyToUnderstand","thumb-up"],["문제가 해결됨","solvedMyProblem","thumb-up"],["기타","otherUp","thumb-up"]],[["필요한 정보가 없음","missingTheInformationINeed","thumb-down"],["너무 복잡함/단계 수가 너무 많음","tooComplicatedTooManySteps","thumb-down"],["오래됨","outOfDate","thumb-down"],["번역 문제","translationIssue","thumb-down"],["샘플/코드 문제","samplesCodeIssue","thumb-down"],["기타","otherDown","thumb-down"]],["최종 업데이트: 2025-03-29(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."]]],[]]