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