تنشئ "إعلانات Google" الاقتراحات تلقائيًا وتقدّم أفكارًا حول
طرق تحسين حسابك، مثل زيادة ميزانية الحملة لحملة محدودة أو من خلال إضافة كلمات رئيسية ذات صلة. اطّلع على القائمة الكاملة
أنواع التوصيات في
مستندات 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();}}
تاريخ التعديل الأخير: 2025-03-04 (حسب التوقيت العالمي المتفَّق عليه)
[null,null,["تاريخ التعديل الأخير: 2025-03-04 (حسب التوقيت العالمي المتفَّق عليه)"],[[["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."]]],[]]