विज्ञापन की मांग बढ़ाने में मदद करने वाला कैंपेन बनाएं

पक्का करें कि ज़रूरी शर्तें पूरी हों: मांग बढ़ाने में मदद करने वाले कैंपेन की ऐसेट के लिए, क्वालिटी के बहुत ऊंचे स्टैंडर्ड को पूरा करना ज़रूरी है. ऐसा इसलिए, क्योंकि उन्हें डिस्कवर और YouTube जैसे बहुत विज़ुअल और मनोरंजन पर फ़ोकस करने वाले प्लैटफ़ॉर्म पर दिखाया जाएगा.

विज्ञापन की मांग बढ़ाने में मदद करने वाला कैंपेन बनाने के लिए, यह तरीका अपनाएं:

  1. बजट बनाएं.
  2. बिडिंग की सही रणनीतियों के साथ, मांग बढ़ाने में मदद करने वाला कैंपेन बनाएं.
  3. बिना टाइप वाला विज्ञापन ग्रुप बनाएं.
  4. ऑडियंस बनाएं.
  5. ऐसेट और मांग बढ़ाने में मदद करने वाले विज्ञापन बनाएं.

बजट बनाएं

बजट बनाएं. ध्यान दें कि मांग बढ़ाने में मदद करने वाले कैंपेन में शेयर किए गए बजट का इस्तेमाल नहीं किया जा सकता. हमारा सुझाव है कि आपके पास ज़रूरत के मुताबिक रोज़ का बजट होना चाहिए. यह आपकी अनुमानित टारगेट सीपीए बिड से कम से कम 15 गुना ज़्यादा होना चाहिए. ज़्यादा जानें.

Java

private static String addCampaignBudget(GoogleAdsClient googleAdsClient, long customerId) {
  CampaignBudget budget =
      CampaignBudget.newBuilder()
          .setName("Interplanetary Cruise Budget #" + getPrintableDateTime())
          .setDeliveryMethod(BudgetDeliveryMethod.STANDARD)
          .setAmountMicros(500_000)
          .build();

  CampaignBudgetOperation op = CampaignBudgetOperation.newBuilder().setCreate(budget).build();

  try (CampaignBudgetServiceClient campaignBudgetServiceClient =
      googleAdsClient.getLatestVersion().createCampaignBudgetServiceClient()) {
    MutateCampaignBudgetsResponse response =
        campaignBudgetServiceClient.mutateCampaignBudgets(
            Long.toString(customerId), ImmutableList.of(op));
    String budgetResourceName = response.getResults(0).getResourceName();
    System.out.printf("Added budget: %s%n", budgetResourceName);
    return budgetResourceName;
  }
}
      

C#

private static string CreateBudget(GoogleAdsClient client, long customerId)
{
    // Get the BudgetService.
    CampaignBudgetServiceClient budgetService = client.GetService(
        Services.V16.CampaignBudgetService);

    // Create the campaign budget.
    CampaignBudget budget = new CampaignBudget()
    {
        Name = "Interplanetary Cruise Budget #" + ExampleUtilities.GetRandomString(),
        DeliveryMethod = BudgetDeliveryMethod.Standard,
        AmountMicros = 500000
    };

    // Create the operation.
    CampaignBudgetOperation budgetOperation = new CampaignBudgetOperation()
    {
        Create = budget
    };

    // Create the campaign budget.
    MutateCampaignBudgetsResponse response = budgetService.MutateCampaignBudgets(
        customerId.ToString(), new CampaignBudgetOperation[] { budgetOperation });
    return response.Results[0].ResourceName;
}
      

PHP

private static function addCampaignBudget(GoogleAdsClient $googleAdsClient, int $customerId)
{
    // Creates a campaign budget.
    $budget = new CampaignBudget([
        'name' => 'Interplanetary Cruise Budget #' . Helper::getPrintableDatetime(),
        'delivery_method' => BudgetDeliveryMethod::STANDARD,
        'amount_micros' => 500000
    ]);

    // Creates a campaign budget operation.
    $campaignBudgetOperation = new CampaignBudgetOperation();
    $campaignBudgetOperation->setCreate($budget);

    // Issues a mutate request.
    $campaignBudgetServiceClient = $googleAdsClient->getCampaignBudgetServiceClient();
    $response = $campaignBudgetServiceClient->mutateCampaignBudgets(
        MutateCampaignBudgetsRequest::build($customerId, [$campaignBudgetOperation])
    );

    /** @var CampaignBudget $addedBudget */
    $addedBudget = $response->getResults()[0];
    printf("Added budget named '%s'%s", $addedBudget->getResourceName(), PHP_EOL);

    return $addedBudget->getResourceName();
}
      

Python

# Create a budget, which can be shared by multiple campaigns.
campaign_budget_operation = client.get_type("CampaignBudgetOperation")
campaign_budget = campaign_budget_operation.create
campaign_budget.name = f"Interplanetary Budget {uuid.uuid4()}"
campaign_budget.delivery_method = (
    client.enums.BudgetDeliveryMethodEnum.STANDARD
)
campaign_budget.amount_micros = 500000

# Add budget.
try:
    campaign_budget_response = (
        campaign_budget_service.mutate_campaign_budgets(
            customer_id=customer_id, operations=[campaign_budget_operation]
        )
    )
except GoogleAdsException as ex:
    handle_googleads_exception(ex)
      

Ruby

# Create a budget, which can be shared by multiple campaigns.
campaign_budget = client.resource.campaign_budget do |cb|
  cb.name = "Interplanetary Budget #{(Time.new.to_f * 1000).to_i}"
  cb.delivery_method = :STANDARD
  cb.amount_micros = 500000
end

operation = client.operation.create_resource.campaign_budget(campaign_budget)

# Add budget.
return_budget = client.service.campaign_budget.mutate_campaign_budgets(
  customer_id: customer_id,
  operations: [operation],
)
      

Perl

# Create a campaign budget, which can be shared by multiple campaigns.
my $campaign_budget =
  Google::Ads::GoogleAds::V16::Resources::CampaignBudget->new({
    name           => "Interplanetary budget #" . uniqid(),
    deliveryMethod => STANDARD,
    amountMicros   => 500000
  });

# Create a campaign budget operation.
my $campaign_budget_operation =
  Google::Ads::GoogleAds::V16::Services::CampaignBudgetService::CampaignBudgetOperation
  ->new({create => $campaign_budget});

# Add the campaign budget.
my $campaign_budgets_response = $api_client->CampaignBudgetService()->mutate({
    customerId => $customer_id,
    operations => [$campaign_budget_operation]});
      

कैंपेन और बिडिंग की रणनीति बनाएं

बजट बनाने के बाद, कैंपेन बनाया जा सकता है.

विज्ञापन की मांग बढ़ाने में मदद करने वाले कैंपेन में AdvertisingChannelType DISCOVERY है. कोई AdvertisingChannelSubType सेट नहीं किया जाना चाहिए.

अपने कैंपेन के लिए, कन्वर्ज़न लक्ष्य सेट अप करें.

बिडिंग की रणनीतियों में, क्लिक बढ़ाना, टारगेट सीपीए, कन्वर्ज़न बढ़ाना, और टारगेट आरओएएस शामिल हैं.

विज्ञापन ग्रुप बनाएं

बिना टाइप का विज्ञापन ग्रुप बनाएं और उसे डिस्कवरी कैंपेन में जोड़ें.

ऑडियंस बनाना

AdGroupCriterion का इस्तेमाल करके, ऑडियंस बनाएं और उन्हें अटैच करें.

एसेट और विज्ञापन बनाएं

विज्ञापन की मांग बढ़ाने में मदद करने वाले कैंपेन के लिए, तीन तरह के विज्ञापन उपलब्ध हैं:

सबसे पहले, इन विज्ञापन टाइप के लिए ऐसेट बनाएं. विज्ञापन की मांग बढ़ाने में मदद करने वाले हर तरह के विज्ञापन के लिए उपलब्ध ऐसेट की सूची के लिए, मांग बढ़ाने में मदद करने वाले कैंपेन की ऐसेट की खास जानकारी और सबसे सही तरीके वाली गाइड देखें. इस गाइड में बताया गया है कि कौनसी ऐसेट की ज़रूरत है और कितनी ऐसेट का सुझाव दिया जाएगा. हमारा यह भी सुझाव है कि क्रिएटिव को बेहतर बनाने के लिए, ऐसेट की परफ़ॉर्मेंस का आकलन करें: रिपोर्टिंग सेक्शन में बताया गया है कि मांग बढ़ाने में मदद करने वाले कैंपेन के लिए परफ़ॉर्मेंस मेट्रिक को कैसे वापस पाया जा सकता है.

DiscoveryCarouselAdInfo में AdDiscoveryCarouselCardAsset नाम का एक और खास ऐसेट है.

ऐसेट और विज्ञापन बनाने के बाद, विज्ञापनों को विज्ञापन ग्रुप में जोड़ें.