تتسم "حملات الأداء الأفضل" ببعض الخصائص الفريدة في مواد العرض.
- هناك حدّ أدنى مطلوب لعدد مواد العرض من أنواع مختلفة.
- يتم تجميع مواد العرض معًا في مجموعة تُعرف باسم
AssetGroup
، وهي فريدة لـ "حملات الأداء الأفضل". - يتم إنشاء مواد العرض تلقائيًا من خلال تعلُّم الآلة.
ضمان استيفاء الحد الأدنى لمتطلبات مواد العرض
تتطلّب كل "حملة أداء أفضل" حدًّا أدنى مبدئيًا من مجموعة مواد العرض. وقد تكون هذه مواد عرض حالية يتم استخدامها في حملات أخرى أو مواد عرض جديدة مخصّصة لحملة "أداء أفضل" تحديدًا.
نوع مادة العرض | نوع الحقل | المواصفات | دقيقة | الحد الأقصى |
---|---|---|---|---|
النص | العنوان | 30 حرفًا بحدّ أقصى، يجب إدراج عنوان واحد على الأقل لا يتجاوز طوله 15 حرفًا | 3 | 15 |
العنوان الطويل | 90 حرفًا بحدّ أقصى | 1 | 5 | |
الوصف | 90 حرفًا بحدّ أقصى، ويجب إدراج وصف واحد على الأقل لا يتجاوز طوله 60 حرفًا. | 2 | 5 | |
اسم النشاط التجاري | 25 حرفًا بحدّ أقصى | 1 | 1 | |
صورة | صورة_التسويق | الحجم الأفقي (1.91:1) 1200 × 628 المقترَح، 600 × 314 دقيقة، الحد الأقصى لحجم الملف 5,120 كيلوبايت | 1 | باخت تايلاندي |
صورة_سوق_الميدان | (1:1) الحجم الذي يُنصح به: 1200 × 1200، أو 300 × 300 دقيقة، أو الحد الأقصى لحجم الملف: 5,120 كيلوبايت | 1 | باخت تايلاندي | |
PORTRAIT_MARKETING_IMAGE | (4:5) يُنصح باستخدام تنسيق 960 × 1200، والحجم 480 × 600 دقيقة | 0 | باخت تايلاندي | |
الشعار | (1:1) الحجم الذي يُنصح به: 1200 × 1200، أو 128 × 128 دقيقة، أو الحد الأقصى لحجم الملف: 5,120 كيلوبايت | 1 | 5 | |
شعار_أفقي | (4:1) الحجم الذي يُنصح به: 1200 × 300، أو 512 × 128 دقيقة، أو الحد الأقصى لحجم الملف: 5,120 كيلوبايت | 0 | 5 | |
فيديو YouTube | فيديو YouTube | نسبة العرض إلى الارتفاع للصورة الأفقية (16:9) أو المربّع (1:1) أو العمودية (9:16)، ومدتها أكبر من أو تساوي 10 ثوانٍ | 0 | 5 |
الحث على اتخاذ إجراء | CALL_TO_ACTION_اختيار | تكون مبرمَجة تلقائيًا أو يمكن اختيارها من قائمة. | 0 | 1 |
حزمة الوسائط | حزمة الوسائط | أقل من 150 كيلوبايت | 0 | 1 |
إذا حاولت ربط مادة عرض صورة لا تتوافق مع مواصفات نسبة العرض إلى الارتفاع
لنوع مادة العرض هذه، سيتم عرض ASPECT_RATIO_NOT_ALLOWED
.
لا يتم إجراء هذا الفحص أثناء تحميل مادة العرض.
مثال الرمز البرمجي
يوضّح مقتطف الرمز التالي إنشاء مواد العرض المتكررة اللازمة في طلب جديد:
لغة 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.V14.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; }
2,999
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, 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::V14::Services::GoogleAdsService::MutateOperation ->new({ assetOperation => Google::Ads::GoogleAds::V14::Services::AssetService::AssetOperation-> new({ create => Google::Ads::GoogleAds::V14::Resources::Asset->new({ textAsset => Google::Ads::GoogleAds::V14::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 باستخدام تقنية تعلُّم الآلة إلى إنشاء مواد عرض إضافية حسب الحاجة لتغطية جميع القنوات ذات الصلة.
ملاحظة: في حال عدم إضافة فيديو إلى مجموعة مواد عرض "حملة الأداء الأفضل"، قد يتم إنشاء مادة عرض فيديو واحدة أو أكثر من مواد العرض في مجموعة مواد العرض الخاصة بك. إذا لم تعُد تريد عرض الفيديوهات المنشأة تلقائيًا في "حملة الأداء الأفضل"، يمكنك تحميل الفيديو المخصّص الخاص بك وسيتوقّف عرض الفيديوهات المنشأة تلقائيًا.