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

تنظيم صفحاتك في مجموعات يمكنك حفظ المحتوى وتصنيفه حسب إعداداتك المفضّلة.

تتسم حملات الأداء الأفضل ببعض السمات الفريدة في ما يخص مواد العرض.

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

التأكّد من استيفاء الحد الأدنى من متطلبات مواد العرض

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

نوع مادة العرض نوع الحقل المواصفات دقيقة الحد الأقصى
النص العنوان 30 حرفًا كحدّ أقصى، يجب تضمين حرف واحد على الأقلّ يتضمّن 15 حرفًا أو أقل. 3 5
LONG_HEADLINE 90 حرفًا كحد أقصى 1 5
الوصف 90 حرفًا كحدّ أقصى، ويجب تضمين حرف واحد على الأقلّ و60 حرفًا أو أقل. 2 5
BUSINESS_NAME 25 حرفًا كحد أقصى 1 1
صورة MARKETING_IMAGE الحجم الأفقي (1.91:1) 1200 × 628، 600 × 314 دقيقة، الحد الأقصى لحجم الملف 5120 كيلوبايت 1 20
SQUARE_MARKETING_IMAGE (1:1) 1200 × 1200 موصى به؛ 300 × 300 دقيقة؛ الحد الأقصى لحجم الملف 5120 كيلوبايت 1 20
PORTRAIT_MARKETING_IMAGE (4:5) يُوصى بحجم 960 × 1200 بكسل؛ و480 × 600 دقيقة 0 20
الشعار (1:1) 1200 × 1200 موصى به، 128 × 128 دقيقة، الحد الأقصى لحجم الملف 5120 كيلوبايت 1 5
شعار LANDSCAPE_LOGO (1:4) 1200 × 300، 512 × 128 دقيقة، الحد الأقصى لحجم الملف 5120 كيلوبايت 0 5
فيديو YOUTUBE_VIDEO فيديو YOUTUBE_VIDEO أفقي، أو رأسي، أو مربّع، أطول من أو يساوي 10 ثوانٍ 0 5
CALL_TO_ACTION CALL_TO_ACTION_SELECTION مبرمَجة تلقائيًا أو اختَر من قائمة 0 1
حزمة الوسائط حزمة الوسائط < 150 كيلوبايت 0 1

يجب إنشاء مواد العرض المتكرّرة (HEADLINE وDESCRIPTION) في طلب منفصل قبل إنشاء الحملة.

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

لغة Java

/** 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.V13.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($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, customer_id, texts):
    """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 = client.get_service("GoogleAdsService")

    operations = []
    for text in texts:
        mutate_operation = client.get_type("MutateOperation")
        asset = mutate_operation.asset_operation.create
        asset.text_asset.text = text
        operations.append(mutate_operation)

    # Send the operations in a single Mutate request.
    response = googleads_service.mutate(
        customer_id=customer_id, mutate_operations=operations,
    )
    asset_resource_names = []
    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::V13::Services::GoogleAdsService::MutateOperation
      ->new({
        assetOperation =>
          Google::Ads::GoogleAds::V13::Services::AssetService::AssetOperation->
          new({
            create => Google::Ads::GoogleAds::V13::Resources::Asset->new({
                textAsset =>
                  Google::Ads::GoogleAds::V13::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 (سواء YouTube أو Gmail أو "بحث Google" أو غيرها) التي يتم عرض إعلانك عليها.

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

ينشئ التشغيل التلقائي من Google باستخدام تقنية تعلُّم الآلة مواد عرض إضافية حسب الحاجة لتغطية جميع القنوات ذات الصلة.

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