Google-Ads-GoogleAds-Client
view release on metacpan or search on metacpan
examples/advanced_operations/add_display_upload_ad.pl view on Meta::CPAN
# Print out information about the newly added asset.
my $asset_resource_name = $assets_response->{results}[0]{resourceName};
printf "The media bundle asset has been added with resource name: '%s'.\n",
$asset_resource_name;
return $asset_resource_name;
}
# Creates a new HTML5 display upload ad and adds it to the specified ad group.
sub create_display_upload_ad_group_ad {
my ($api_client, $customer_id, $ad_group_id, $ad_asset_resource_name) = @_;
# Create a display upload ad info.
my $display_upload_ad_info =
Google::Ads::GoogleAds::V24::Common::DisplayUploadAdInfo->new({
displayUploadProductType => HTML5_UPLOAD_AD,
mediaBundle =>
Google::Ads::GoogleAds::V24::Common::AdMediaBundleAsset->new({
asset => $ad_asset_resource_name,
})});
# Create a display upload ad.
my $display_upload_ad = Google::Ads::GoogleAds::V24::Resources::Ad->new({
name => "Ad for HTML5",
finalUrls => ["http://example.com/html5"],
# Exactly one ad data field must be included to specify the ad type. See
# https://developers.google.com/google-ads/api/reference/rpc/latest/Ad for the
# full list of available types.
displayUploadAd => $display_upload_ad_info,
});
# Create an ad group ad.
my $ad_group_ad = Google::Ads::GoogleAds::V24::Resources::AdGroupAd->new({
ad => $display_upload_ad,
status => PAUSED,
adGroup => Google::Ads::GoogleAds::V24::Utils::ResourceNames::ad_group(
$customer_id, $ad_group_id
)});
# Create an ad group ad operation.
my $ad_group_ad_operation =
Google::Ads::GoogleAds::V24::Services::AdGroupAdService::AdGroupAdOperation
->new({create => $ad_group_ad});
# Add the ad group ad.
my $response = $api_client->AdGroupAdService()->mutate({
customerId => $customer_id,
operations => [$ad_group_ad_operation]});
# Display the resulting ad group ad's resource name.
printf "Created new ad group ad '%s'.\n",
$response->{results}[0]{resourceName};
}
# Don't run the example if the file is being included.
if (abs_path($0) ne abs_path(__FILE__)) {
return 1;
}
# Get Google Ads Client, credentials will be read from ~/googleads.properties.
my $api_client = Google::Ads::GoogleAds::Client->new();
# By default examples are set to die on any server returned fault.
$api_client->set_die_on_faults(1);
# Parameters passed on the command line will override any parameters set in code.
GetOptions(
"customer_id=s" => \$customer_id,
"ad_group_id=i" => \$ad_group_id,
);
# Print the help message if the parameters are not initialized in the code nor
# in the command line.
pod2usage(2) if not check_params($customer_id, $ad_group_id);
# Call the example.
add_display_upload_ad($api_client, $customer_id =~ s/-//gr, $ad_group_id);
=pod
=head1 NAME
add_display_upload_ad
=head1 DESCRIPTION
This code example adds a display upload ad to a given ad group.
To get ad groups, run get_ad_groups.pl
This feature is only available to allowlisted accounts.
See https://support.google.com/google-ads/answer/1722096 for more details.
=head1 SYNOPSIS
add_display_upload_ad.pl [options]
-help Show the help message.
-customer_id The Google Ads customer ID.
-ad_group_id The ID of the ad group to which the new ad will be added.
=cut
( run in 1.230 second using v1.01-cache-2.11-cpan-f56aa216473 )