হোটেল বিজ্ঞাপনের জন্য, একটি পৃথক প্রচারের জন্য একটি বিডিং কৌশল নির্ধারণ করা যেতে পারে।
হোটেল বিজ্ঞাপনের জন্য বিডিং কৌশল বেছে নেওয়ার বিষয়ে বিশদ বিবরণ হোটেল বিজ্ঞাপনের বিডিং ওভারভিউতে পাওয়া যাবে। বিডিং কৌশলগুলির সাথে পরিচিত হওয়ার পরে, আপনি হোটেল প্রচারাভিযানের বিডিং কৌশল নির্ধারণ এবং আপডেট করতে Google বিজ্ঞাপন API ব্যবহার করতে পারেন।
একটি বিডিং কৌশল বরাদ্দ করুন
একটি নতুন হোটেল প্রচারাভিযান তৈরির অংশ হিসাবে একটি কৌশল নির্ধারণ করতে, এই পদক্ষেপগুলি অনুসরণ করুন:
একটি
campaign_bidding_strategy
বেছে নিন। হোটেল বিজ্ঞাপনের জন্য নিম্নলিখিত কৌশলগুলি ব্যবহার করা যেতে পারে:-
commission
(প্রতি রূপান্তর বা থাকার প্রতি) -
percent_cpc
(উন্নত CPC সমর্থন করে) -
manual_cpc
(উন্নত CPC সমর্থন করে)
-
আপনি নির্বাচিত কৌশলের জন্য ব্যবহার করতে চান এমন ক্ষেত্রের নাম-মানের জোড়া নির্ধারণ করুন। উদাহরণস্বরূপ, একটি
percent_cpc
কৌশলের জন্য, আপনিenhanced_cpc_enabled
সেট করতে পারেনtrue
।নতুন প্রচারাভিযান তৈরি করার সময় কৌশল নির্ধারণ করুন। উদাহরণ স্বরূপ, জাভাতে,
Campaign
ইন্সট্যান্সের একজন নির্মাতার মধ্যে থেকেcampaign_bidding_strategy
ফিল্ডের (পদ্ধতির নাম কনভেনশনটিset campaign_bidding_strategy
হয়েছে) এর জন্য সেটার পদ্ধতিতে কল করুন।commission
কৌশলের জন্য, নতুন প্রচারাভিযান তৈরি করার সময় একটি অতিরিক্ত বিবৃতি যোগ করতে ভুলবেন না যাPaymentMode
সেট করে।
একটি নতুন প্রচারাভিযান তৈরি করার সময় একটি percent_cpc
বিডিং কৌশল কীভাবে সেট করবেন তা এই উদাহরণটি দেখায়:
জাভা
// Creates the campaign. Campaign campaign = Campaign.newBuilder() .setName("Interplanetary Cruise #" + getPrintableDateTime()) // Configures settings related to hotel campaigns including advertising channel type // and hotel setting info. .setAdvertisingChannelType(AdvertisingChannelType.HOTEL) .setHotelSetting(hotelSettingInfo) // Recommendation: Sets the campaign to PAUSED when creating it to prevent // the ads from immediately serving. Set to ENABLED once you've added // targeting and the ads are ready to serve .setStatus(CampaignStatus.PAUSED) // Sets the bidding strategy to Percent CPC. Only Manual CPC and Percent CPC can be used // for hotel campaigns. .setPercentCpc( PercentCpc.newBuilder().setCpcBidCeilingMicros(cpcBidCeilingMicroAmount).build()) // Sets the budget. .setCampaignBudget(budgetResourceName) // Adds the networkSettings configured above. .setNetworkSettings(networkSettings) .build();
সি#
// Create a campaign. Campaign campaign = new Campaign() { Name = "Interplanetary Cruise Campaign #" + ExampleUtilities.GetRandomString(), // Configure settings related to hotel campaigns including advertising channel type // and hotel setting info. AdvertisingChannelType = AdvertisingChannelType.Hotel, HotelSetting = new HotelSettingInfo() { HotelCenterId = hotelCenterAccountId }, // Recommendation: Set the campaign to PAUSED when creating it to prevent // the ads from immediately serving. Set to ENABLED once you've added // targeting and the ads are ready to serve. Status = CampaignStatus.Paused, // Sets the bidding strategy to PercentCpc. Only Manual CPC and Percent CPC can // be used for hotel campaigns. PercentCpc = new PercentCpc() { CpcBidCeilingMicros = cpcBidCeilingMicroAmount }, // Set the budget. CampaignBudget = budgetResourceName, // Configure the campaign network options. Only Google Search is allowed for // hotel campaigns. NetworkSettings = new NetworkSettings() { TargetGoogleSearch = true } };
পিএইচপি
// Creates a campaign. $campaign = new Campaign([ 'name' => 'Interplanetary Cruise Campaign #' . Helper::getPrintableDatetime(), // Configures settings related to hotel campaigns including advertising channel type // and hotel setting info. 'advertising_channel_type' => AdvertisingChannelType::HOTEL, 'hotel_setting' => new HotelSettingInfo(['hotel_center_id' => $hotelCenterAccountId]), // Recommendation: Set the campaign to PAUSED when creating it to prevent // the ads from immediately serving. Set to ENABLED once you've added // targeting and the ads are ready to serve. 'status' => CampaignStatus::PAUSED, // Sets the bidding strategy to PercentCpc. Only Manual CPC and Percent CPC can be used // for hotel campaigns. 'percent_cpc' => new PercentCpc([ 'cpc_bid_ceiling_micros' => $cpcBidCeilingMicroAmount ]), // Sets the budget. 'campaign_budget' => $budgetResourceName, // Configures the campaign network options. Only Google Search is allowed for // hotel campaigns. 'network_settings' => new NetworkSettings([ 'target_google_search' => true, ]), ]);
পাইথন
# Create campaign. campaign_operation = client.get_type("CampaignOperation") campaign = campaign_operation.create campaign.name = f"Interplanetary Cruise Campaign {uuid.uuid4()}" # Configures settings related to hotel campaigns including advertising # channel type and hotel setting info. campaign.advertising_channel_type = ( client.enums.AdvertisingChannelTypeEnum.HOTEL ) campaign.hotel_setting.hotel_center_id = hotel_center_account_id # Recommendation: Set the campaign to PAUSED when creating it to prevent the # ads from immediately serving. Set to ENABLED once you've added targeting # and the ads are ready to serve. campaign.status = client.enums.CampaignStatusEnum.PAUSED # Set the bidding strategy to PercentCpc. Only Manual CPC and Percent CPC # can be used for hotel campaigns. campaign.percent_cpc.cpc_bid_ceiling_micros = cpc_bid_ceiling_micro_amount # Sets the budget. campaign.campaign_budget = budget_resource_name # Set the campaign network options. Only Google Search is allowed for hotel # campaigns. campaign.network_settings.target_google_search = True
রুবি
# Create a campaign. campaign_operation = client.operation.create_resource.campaign do |c| c.name = generate_random_name_field("Interplanetary Cruise Campaign") # Configure settings related to hotel campaigns. c.advertising_channel_type = :HOTEL c.hotel_setting = client.resource.hotel_setting_info do |hsi| hsi.hotel_center_id = hotel_center_account_id end # Recommendation: Set the campaign to PAUSED when creating it to prevent the # ads from immediately serving. Set to ENABLED once you've added targeting and # the ads are ready to serve. c.status = :PAUSED # Set the bidding strategy to PercentCpc. Only Manual CPC and Percent CPC can # be used for hotel campaigns. c.percent_cpc = client.resource.percent_cpc do |pcpc| pcpc.cpc_bid_ceiling_micros = cpc_bid_ceiling_micro_amount end # Set the budget. c.campaign_budget = budget_resource # Configures the campaign network options. Only Google Search is allowed for # hotel campaigns. c.network_settings = client.resource.network_settings do |ns| ns.target_google_search = true end end
পার্ল
# Create a hotel campaign. my $campaign = Google::Ads::GoogleAds::V17::Resources::Campaign->new({ name => "Interplanetary Cruise Campaign #" . uniqid(), # Configure settings related to hotel campaigns including advertising # channel type and hotel setting info. advertisingChannelType => HOTEL, hotelSetting => Google::Ads::GoogleAds::V17::Resources::HotelSettingInfo->new({ hotelCenterId => $hotel_center_account_id } ), # Recommendation: Set the campaign to PAUSED when creating it to prevent # the ads from immediately serving. Set to ENABLED once you've added # targeting and the ads are ready to serve. status => Google::Ads::GoogleAds::V17::Enums::CampaignStatusEnum::PAUSED, # Set the bidding strategy to PercentCpc. Only Manual CPC and Percent CPC # can be used for hotel campaigns. percentCpc => Google::Ads::GoogleAds::V17::Common::PercentCpc->new( {cpcBidCeilingMicros => $cpc_bid_ceiling_micro_amount} ), # Set the budget. campaignBudget => $budget_resource_name, # Configure the campaign network options. Only Google Search is allowed for # hotel campaigns. networkSettings => Google::Ads::GoogleAds::V17::Resources::NetworkSettings->new({ targetGoogleSearch => "true" })});
একটি বিডিং কৌশল আপডেট করুন
একটি প্রচারাভিযানের বিডিং কৌশল আপডেট করতে, একটি CampaignOperation.update
এ, একটি বিডিং কৌশল বরাদ্দ করুন- এ বর্ণিত Campaign
ক্ষেত্রগুলি সেট করুন৷