קל לארגן דפים בעזרת אוספים
אפשר לשמור ולסווג תוכן על סמך ההעדפות שלך.
ההמלצות נוצרות באופן אוטומטי על ידי 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-06-03 (שעון 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."]]],[]]