बेहतरीन परफ़ॉर्मेंस में मदद करने वाले कैंपेन की कुछ खास विशेषताएं ऐसेट.
- अलग-अलग तरह की ऐसेट की कम से कम संख्या होना ज़रूरी है.
- ऐसेट को किसी कलेक्शन में एक साथ रखा जाता है. इस कलेक्शन को इस कलेक्शन में रखा जाता है:
एक
AssetGroup
, जो बेहतरीन परफ़ॉर्मेंस में मदद करने वाले कैंपेन के लिए यूनीक होता है कैंपेन. - कुछ ऐसेट, मशीन लर्निंग से अपने-आप जनरेट हो सकती हैं.
कोड का उदाहरण
नीचे दिए गए कोड स्निपेट में, डुप्लीकेट ज़रूरी ऐसेट बनाने के बारे में बताया गया है एक नए अनुरोध में:
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.V17.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, 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::V17::Services::GoogleAdsService::MutateOperation ->new({ assetOperation => Google::Ads::GoogleAds::V17::Services::AssetService::AssetOperation-> new({ create => Google::Ads::GoogleAds::V17::Resources::Asset->new({ textAsset => Google::Ads::GoogleAds::V17::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 ऑटोमेशन, ज़रूरत के हिसाब से अतिरिक्त ऐसेट जनरेट करता है . ऐसेट अपने-आप जनरेट होती हैं जिस Google विज्ञापन चैनल (जैसे कि YouTube, Gmail या Search) पर आपका विज्ञापन दिखाया जा रहा है.
टेक्स्ट ऐसेट
आप अपने खाते में एक पेज फ़ीड को किसी अपने-आप ऐसेट जनरेट करने के लिए, बेहतरीन परफ़ॉर्मेंस में मदद करने वाले कैंपेन का इस्तेमाल करें.
पेज फ़ीड को किसी कैंपेन से जोड़ने के लिए, वही तरीका अपनाएं जिसका इस्तेमाल किया गया है डाइनैमिक सर्च विज्ञापन:
- अपनी वेबसाइट के हर पेज के लिए ऐसेट बनाना
- ऐसेटसेट में पेज फ़ीड ऐसेट का पैकेज करना
- ऐसेट को कैंपेन से जोड़ना
पेज फ़ीड जोड़ने के बाद, पक्का करें कि AssetAutomationSetting
टाइप
TEXT_ASSET_AUTOMATION
को OPTED_IN
पर सेट किया गया.
अगर आपने AssetAutomationSetting
को कब सेट नहीं किया, तो यह डिफ़ॉल्ट सेटिंग है
उस पर क्लिक करें.
इस सेटिंग का इस्तेमाल करने का मतलब है कि आपका कैंपेन, आपके लैंडिंग पेज के कॉन्टेंट का इस्तेमाल कर सकता है,
बेहतर होने की संभावना होने पर विज्ञापनों को कस्टमाइज़ करने के लिए, डोमेन और ऐसेट उपलब्ध कराई हैं
परफ़ॉर्मेंस. हमारा सुझाव है कि आप इसे OPTED-IN
में ही रहने दें.
वीडियो एसेट
अगर आपने परफ़ॉर्मेंस मैक्स कैंपेन के ऐसेट ग्रुप में कोई वीडियो नहीं जोड़ा है, तो एक या उससे ज़्यादा वीडियो वीडियो ऐसेट, ऐसेट ग्रुप में मौजूद ऐसेट से जनरेट की जा सकती हैं. अगर नहीं अपने-आप जनरेट होने वाले वीडियो को बेहतरीन परफ़ॉर्मेंस में मदद करने वाले कैंपेन में दिखाने के लिए, खुद का कस्टम वीडियो अपलोड किया जा सकता है. अपने-आप जनरेट हुए वीडियो दिखाना बंद कर दिया जाए.