مواد العرض في "حملة الأداء الأفضل"

تتضمّن "حملات الأداء الأفضل" بعض الخصائص الفريدة المتعلّقة بـ مواد العرض.

  1. هناك حدّ أدنى مطلوب لعدد مواد العرض من أنواع مختلفة.
  2. يتم تجميع مواد العرض معًا في مجموعة تُسمّى AssetGroup، وهي فريدة من نوعها في "حملات الأداء الأفضل".
  3. يمكن أن يتم إنشاء بعض مواد العرض تلقائيًا من خلال تعلُّم الآلة.

إرشادات العلامة التجارية: ربط اسم المؤسسة وشعارها

في حين يتم تنظيم معظم مواد العرض في "حملة الأداء الأفضل" ضمن مجموعات مواد العرض، يتم التعامل مع مواد العرض الرئيسية التي تمثّل هوية علامتك التجارية، وتحديدًا اسم المؤسسة و شعار المؤسسة، بشكلٍ مختلف إذا تم تفعيل إرشادات العلامة التجارية لحملتك.

يتم ربط مواد عرض إرشادات العلامة التجارية هذه مباشرةً على مستوى الحملة، وليس على مستوى مجموعة مواد العرض. ويتم ذلك باستخدام مورد CampaignAsset. يمكنك ربط مادة العرض بالحملة، مع تحديد AssetFieldType المناسب:

  • BUSINESS_NAME لمادة عرض "اسم المؤسسة" (وهي مادة عرض نصية)
  • LOGO لمادة عرض "شعار المؤسسة" (وهي مادة عرض صورة)

يضمن هذا الربط على مستوى الحملة تمثيلاً متّسقًا للعلامة التجارية في جميع مجموعات مواد العرض ضمن "حملة الأداء الأفضل".

مثال للرمز

يوضّح مقتطف الرمز البرمجي التالي كيفية إنشاء مواد العرض المتكرّرة اللازمة في طلب جديد:

جافا

/** 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;
}

      

#C

/// <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.V24.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;
}

      

PHP

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;
}
      

Python

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
      

Ruby

# 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
      

Perl

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;
}
      

curl

مواد عرض منشأة تلقائيًا

تنشئ أتمتة Google مواد عرض إضافية حسب الحاجة لتغطية جميع القنوات ذات الصلة باستخدام تعلُّم الآلة. ويتم مزج مواد العرض ومطابقتها تلقائيًا استنادًا إلى قناة إعلانات Google (مثل YouTube أو Gmail أو "بحث Google") التي يتم عرض إعلانك عليها. لمزيد من التفاصيل حول إدارة هذه الإعدادات، يُرجى الاطّلاع على دليل إعدادات أتمتة مواد العرض asset automation settings guide.

مواد العرض النصية

يمكنك ربط خلاصة صفحة في حسابك بحملة من نوع "الأداء الأفضل" لـ إنشاء مواد العرض تلقائيًا.

لربط خلاصة صفحة بحملة، استخدِم العملية نفسها المستخدَمة في "الإعلانات الديناميكية على شبكة البحث":

  1. أنشِئ مواد عرض لكل صفحة من صفحات موقعك الإلكتروني.
  2. جمِّع مواد عرض خلاصة الصفحة في مجموعة مواد عرض.
  3. اربط مجموعة مواد العرض بحملة.

بعد ربط خلاصة صفحة، تأكَّد من ضبط AssetAutomationSetting من النوع TEXT_ASSET_AUTOMATION على OPTED_IN.

هذا هو الإعداد التلقائي إذا لم تضبط AssetAutomationSetting عند إنشاء الحملة.

يعني استخدام هذا الإعداد أنّ حملتك يمكنها استخدام محتوى من صفحتك المقصودة ونطاقك ومواد العرض المقدَّمة لتخصيص الإعلانات عندما يكون من المتوقّع أن يؤدّي ذلك إلى تحسين الأداء. ننصحك بالإبقاء على هذا الإعداد على OPTED-IN.

إرشادات النصوص

تتيح لك إرشادات النصوص تحسين الرسائل الإعلانية للعلامة التجارية لمواد العرض النصية المنشأة تلقائيًا من خلال تحديد استبعادات العبارات وقيود الرسالة الإعلانية.

لاستخدام إرشادات النصوص، املأ حقل text_guidelines في مورد Campaign:

  • استبعادات العبارات: قدِّم قائمة بالكلمات أو العبارات التامة التي يجب استبعادها من مواد العرض النصية المنشأة. يمكن أن يتضمّن كل استبعاد ما يصل إلى 30 حرفًا، مع حدّ أقصى يبلغ 25 استبعادًا.
  • قيود الرسالة الإعلانية: قدِّم تعليمات ذات شكل حر (تتضمّن كل منها ما يصل إلى 300 حرف) لتوجيه عملية إنشاء النصوص المستندة إلى الذكاء الاصطناعي. يمكنك تقديم ما يصل إلى 40 قيدًا. لا يُسمح إلا بنوع القيد RESTRICTION_BASED_EXCLUSION.

مواد عرض الفيديو

في حال عدم إضافة فيديو إلى مجموعة مواد عرض "حملة الأداء الأفضل"، قد يتم إنشاء مادة عرض فيديو واحدة أو أكثر من مواد العرض في مجموعة مواد العرض الخاصة بك. وبالنسبة إلى الفيديوهات المُنشأة تلقائيًا، إذا لم تعد تريد عرضها في "حملة الأداء الأفضل"، يمكنك تحميل الفيديو المخصّص التابع لك، وسيتوقف عرض الفيديوهات المُنشأة تلقائيًا.

قد تعمل الأتمتة الذكية على تحسين مواد عرض الفيديو على YouTube من خلال تعديل اتجاه الفيديو وتقصيره بذكاء لإبراز اللحظات الرئيسية. إذا كنت تفضّل الاحتفاظ بمواد عرض الفيديو الأصلية، اضبط AssetAutomationSetting من النوع GENERATE_ENHANCED_YOUTUBE_VIDEOS على OPTED_OUT.