অ্যাসেটের ক্ষেত্রে পারফরম্যান্স ম্যাক্স ক্যাম্পেইনগুলোর কিছু স্বতন্ত্র বৈশিষ্ট্য রয়েছে।
- বিভিন্ন ধরনের সম্পদের একটি ন্যূনতম প্রয়োজনীয় সংখ্যা রয়েছে।
- অ্যাসেটগুলোকে অ্যাসেটগ্রুপ (
AssetGroupনামক একটি সংগ্রহে একত্রিত করা হয়, যা শুধুমাত্র পারফরম্যান্স ম্যাক্স (Performance Max) ক্যাম্পেইনের ক্ষেত্রেই দেখা যায়। - মেশিন লার্নিংয়ের মাধ্যমে কিছু অ্যাসেট স্বয়ংক্রিয়ভাবে তৈরি করা যায়।
ব্র্যান্ড নির্দেশিকা: ব্যবসার নাম এবং লোগোর সংযোগ
পারফরম্যান্স ম্যাক্স ক্যাম্পেইনের বেশিরভাগ অ্যাসেট অ্যাসেট গ্রুপের মধ্যে সাজানো থাকলেও, আপনার ব্র্যান্ডের পরিচয় তুলে ধরে এমন মূল অ্যাসেটগুলো—বিশেষ করে ব্যবসার নাম এবং ব্যবসার লোগো —ভিন্নভাবে পরিচালনা করা হয়, যদি আপনার ক্যাম্পেইনের জন্য ব্র্যান্ড গাইডলাইন সক্রিয় করা থাকে।
এই ব্র্যান্ড নির্দেশিকা অ্যাসেটগুলি অ্যাসেট গ্রুপ স্তরে নয়, সরাসরি ক্যাম্পেইন স্তরে লিঙ্ক করা হয়। এটি CampaignAsset রিসোর্স ব্যবহার করে করা হয়। আপনি উপযুক্ত AssetFieldType উল্লেখ করে অ্যাসেটটিকে ক্যাম্পেইনের সাথে লিঙ্ক করেন।
* `BUSINESS_NAME` for the Business Name asset (which is a Text Asset).
* `LOGO` for the Business Logo asset (which is an Image Asset).
এই ক্যাম্পেইন-স্তরের সংযোগ পারফরম্যান্স ম্যাক্স ক্যাম্পেইনের অন্তর্গত সমস্ত অ্যাসেট গ্রুপ জুড়ে ব্র্যান্ডের ধারাবাহিক প্রতিনিধিত্ব নিশ্চিত করে।
কোডের উদাহরণ
নিম্নলিখিত কোড স্নিপেটটি একটি নতুন অনুরোধে প্রয়োজনীয় পুনরাবৃত্ত অ্যাসেটগুলি তৈরি করার পদ্ধতি ব্যাখ্যা করে:
জাভা
/** Creates multiple text assets and returns the list of resource names. */ private List<String> createMultipleTextAssets( GoogleAdsClient googleAdsClient, long customerId, List<String> texts) { List<MutateOperation> mutateOperations = new ArrayList<>(); for (String text : texts) { Asset asset = Asset.newBuilder().setTextAsset(TextAsset.newBuilder().setText(text)).build(); AssetOperation assetOperation = AssetOperation.newBuilder().setCreate(asset).build(); mutateOperations.add(MutateOperation.newBuilder().setAssetOperation(assetOperation).build()); } List<String> assetResourceNames = new ArrayList<>(); // Creates the service client. try (GoogleAdsServiceClient googleAdsServiceClient = googleAdsClient.getLatestVersion().createGoogleAdsServiceClient()) { // Sends the operations in a single Mutate request. MutateGoogleAdsResponse response = googleAdsServiceClient.mutate(Long.toString(customerId), mutateOperations); for (MutateOperationResponse result : response.getMutateOperationResponsesList()) { if (result.hasAssetResult()) { assetResourceNames.add(result.getAssetResult().getResourceName()); } } printResponseDetails(response); } return assetResourceNames; }
সি#
/// <summary> /// Creates multiple text assets and returns the list of resource names. /// </summary> /// <param name="client">The Google Ads Client.</param> /// <param name="customerId">The customer's ID.</param> /// <param name="texts">The texts to add.</param> /// <returns>A list of asset resource names.</returns> private List<string> CreateMultipleTextAssets( GoogleAdsClient client, long customerId, string[] texts) { // Get the GoogleAdsService. GoogleAdsServiceClient googleAdsServiceClient = client.GetService(Services.V23.GoogleAdsService); MutateGoogleAdsRequest request = new MutateGoogleAdsRequest() { CustomerId = customerId.ToString() }; foreach (string text in texts) { request.MutateOperations.Add( new MutateOperation() { AssetOperation = new AssetOperation() { Create = new Asset() { TextAsset = new TextAsset() { Text = text } } } } ); } // Send the operations in a single Mutate request. MutateGoogleAdsResponse response = googleAdsServiceClient.Mutate(request); List<string> assetResourceNames = new List<string>(); foreach (MutateOperationResponse operationResponse in response.MutateOperationResponses) { MutateAssetResult assetResult = operationResponse.AssetResult; assetResourceNames.Add(assetResult.ResourceName); } PrintResponseDetails(response); return assetResourceNames; }
পিএইচপি
private static function createMultipleTextAssets( GoogleAdsClient $googleAdsClient, int $customerId, array $texts ): array { // Here again, we use the GoogleAdService to create multiple text assets in a single // request. $operations = []; foreach ($texts as $text) { // Creates a mutate operation for a text asset. $operations[] = new MutateOperation([ 'asset_operation' => new AssetOperation([ 'create' => new Asset(['text_asset' => new TextAsset(['text' => $text])]) ]) ]); } // Issues a mutate request to add all assets. $googleAdsService = $googleAdsClient->getGoogleAdsServiceClient(); /** @var MutateGoogleAdsResponse $mutateGoogleAdsResponse */ $mutateGoogleAdsResponse = $googleAdsService->mutate(MutateGoogleAdsRequest::build($customerId, $operations)); $assetResourceNames = []; foreach ($mutateGoogleAdsResponse->getMutateOperationResponses() as $response) { /** @var MutateOperationResponse $response */ $assetResourceNames[] = $response->getAssetResult()->getResourceName(); } self::printResponseDetails($mutateGoogleAdsResponse); return $assetResourceNames; }
পাইথন
def create_multiple_text_assets( client: GoogleAdsClient, customer_id: str, texts: List[str] ) -> List[str]: """Creates multiple text assets and returns the list of resource names. Args: client: an initialized GoogleAdsClient instance. customer_id: a client customer ID. texts: a list of strings, each of which will be used to create a text asset. Returns: asset_resource_names: a list of asset resource names. """ # Here again we use the GoogleAdService to create multiple text # assets in a single request. googleads_service: GoogleAdsServiceClient = client.get_service( "GoogleAdsService" ) operations: List[MutateOperation] = [] for text in texts: mutate_operation: MutateOperation = client.get_type("MutateOperation") asset: Asset = mutate_operation.asset_operation.create asset.text_asset.text = text operations.append(mutate_operation) # Send the operations in a single Mutate request. response: MutateGoogleAdsResponse = googleads_service.mutate( customer_id=customer_id, mutate_operations=operations, ) asset_resource_names: List[str] = [] for result in response.mutate_operation_responses: if result._pb.HasField("asset_result"): asset_resource_names.append(result.asset_result.resource_name) print_response_details(response) return asset_resource_names
রুবি
# Creates multiple text assets and returns the list of resource names. def create_multiple_text_assets(client, customer_id, texts) operations = texts.map do |text| client.operation.mutate do |m| m.asset_operation = client.operation.create_resource.asset do |asset| asset.text_asset = client.resource.text_asset do |text_asset| text_asset.text = text end end end end # Send the operations in a single Mutate request. response = client.service.google_ads.mutate( customer_id: customer_id, mutate_operations: operations, ) asset_resource_names = [] response.mutate_operation_responses.each do |result| if result.asset_result asset_resource_names.append(result.asset_result.resource_name) end end print_response_details(response) asset_resource_names end
পার্ল
sub create_multiple_text_assets { my ($api_client, $customer_id, $texts) = @_; # Here again we use the GoogleAdService to create multiple text assets in a # single request. my $operations = []; foreach my $text (@$texts) { # Create a mutate operation for a text asset. push @$operations, Google::Ads::GoogleAds::V24::Services::GoogleAdsService::MutateOperation ->new({ assetOperation => Google::Ads::GoogleAds::V24::Services::AssetService::AssetOperation-> new({ create => Google::Ads::GoogleAds::V24::Resources::Asset->new({ textAsset => Google::Ads::GoogleAds::V24::Common::TextAsset->new({ text => $text })})})}); } # Issue a mutate request to add all assets. my $mutate_google_ads_response = $api_client->GoogleAdsService()->mutate({ customerId => $customer_id, mutateOperations => $operations }); my $asset_resource_names = []; foreach my $response (@{$mutate_google_ads_response->{mutateOperationResponses}}) { push @$asset_resource_names, $response->{assetResult}{resourceName}; } print_response_details($mutate_google_ads_response); return $asset_resource_names; }
কার্ল
স্বয়ংক্রিয়ভাবে তৈরি সম্পদ
Google automation using machine learning generates additional assets as needed to cover all relevant channels. Assets are automatically mixed and matched based on which Google Ad channel (such as YouTube, Gmail, or Search) your ad is being served on. For more details on managing these settings, see the asset automation settings guide .
টেক্সট অ্যাসেট
স্বয়ংক্রিয়ভাবে অ্যাসেট তৈরি করার জন্য আপনি আপনার অ্যাকাউন্টের একটি পেজ ফিডকে পারফরম্যান্স ম্যাক্স ক্যাম্পেইনের সাথে সংযুক্ত করতে পারেন।
একটি পেজ ফিডকে কোনো ক্যাম্পেইনের সাথে লিঙ্ক করতে, ডাইনামিক সার্চ অ্যাডের জন্য ব্যবহৃত একই প্রক্রিয়াটি অনুসরণ করুন:
- আপনার ওয়েবসাইটের প্রতিটি পৃষ্ঠার জন্য অ্যাসেট তৈরি করুন।
- প্যাকেজ পেজ ফিড অ্যাসেটগুলিকে একটি অ্যাসেটসেটে অন্তর্ভুক্ত করে
- অ্যাসেটসেটটিকে একটি ক্যাম্পেইনের সাথে সংযুক্ত করুন।
একটি পেজ ফিড যুক্ত করার পরে, নিশ্চিত করুন যে TEXT_ASSET_AUTOMATION টাইপের AssetAutomationSetting টি OPTED_IN এ সেট করা আছে। ক্যাম্পেইন তৈরি করার সময় আপনি যদি AssetAutomationSetting সেট না করে থাকেন, তবে এটিই ডিফল্ট সেটিং।
এই সেটিংটি ব্যবহার করার অর্থ হলো, আপনার ক্যাম্পেইন পারফরম্যান্স উন্নত করার পূর্বাভাস অনুযায়ী বিজ্ঞাপন কাস্টমাইজ করতে আপনার ল্যান্ডিং পেজ, ডোমেইন এবং প্রদত্ত অ্যাসেট থেকে কন্টেন্ট ব্যবহার করতে পারবে। আমরা এটিকে OPTED-IN হিসেবে রাখার পরামর্শ দিই।
পাঠ্য নির্দেশিকা
টেক্সট গাইডলাইন আপনাকে নির্দিষ্ট শব্দ বর্জন এবং বার্তার উপর সীমাবদ্ধতা আরোপের মাধ্যমে স্বয়ংক্রিয়ভাবে তৈরি টেক্সট অ্যাসেটগুলোর জন্য ব্র্যান্ড বার্তা পরিমার্জন করার সুযোগ দেয়।
টেক্সট নির্দেশিকা ব্যবহার করতে, Campaign রিসোর্সের text_guidelines ফিল্ডটি পূরণ করুন:
- শব্দ বর্জন : তৈরি করা টেক্সট অ্যাসেট থেকে বাদ দেওয়ার জন্য নির্দিষ্ট শব্দ বা বাক্যাংশের একটি তালিকা দিন। প্রতিটি বর্জনকৃত শব্দ ৩০ অক্ষর পর্যন্ত হতে পারে এবং সর্বোচ্চ ২৫টি বর্জন করা যাবে।
- বার্তার সীমাবদ্ধতা : এআই টেক্সট জেনারেশনকে নির্দেশিত করতে অবাধ নির্দেশনা (প্রতিটি ৩০০ অক্ষর পর্যন্ত) প্রদান করুন। আপনি সর্বোচ্চ ৪০টি সীমাবদ্ধতা প্রদান করতে পারবেন। সীমাবদ্ধতার প্রকারের জন্য শুধুমাত্র
RESTRICTION_BASED_EXCLUSIONসমর্থিত।
ভিডিও সম্পদ
আপনি যদি আপনার পারফরম্যান্স ম্যাক্স অ্যাসেট গ্রুপে কোনো ভিডিও যোগ না করেন, তাহলে আপনার অ্যাসেট গ্রুপের অ্যাসেটগুলো থেকে এক বা একাধিক ভিডিও অ্যাসেট তৈরি হতে পারে। আপনি যদি আপনার পারফরম্যান্স ম্যাক্স ক্যাম্পেইনে স্বয়ংক্রিয়ভাবে তৈরি হওয়া ভিডিওগুলো আর না চান, তাহলে আপনি আপনার নিজস্ব কাস্টম ভিডিও আপলোড করতে পারেন, এবং স্বয়ংক্রিয়ভাবে তৈরি হওয়া ভিডিওগুলো দেখানো বন্ধ হয়ে যাবে।
স্মার্ট অটোমেশন ভিডিওর ওরিয়েন্টেশন সামঞ্জস্য করে এবং গুরুত্বপূর্ণ মুহূর্তগুলো তুলে ধরতে বুদ্ধিমত্তার সাথে সেগুলোকে ছোট করে আপনার ইউটিউব ভিডিও অ্যাসেটগুলোকে উন্নত করতে পারে। আপনি যদি আপনার আসল ভিডিও অ্যাসেটগুলো অক্ষুণ্ণ রাখতে চান, তাহলে GENERATE_ENHANCED_YOUTUBE_VIDEOS টাইপের AssetAutomationSetting টিকে OPTED_OUT এ সেট করুন।