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."]]],[]]