সেভ করা পৃষ্ঠা গুছিয়ে রাখতে 'সংগ্রহ' ব্যবহার করুন
আপনার পছন্দ অনুযায়ী কন্টেন্ট সেভ করুন ও সঠিক বিভাগে রাখুন।
সুপারিশগুলি স্বয়ংক্রিয়ভাবে 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."]]],[]]