Google-Ads-AdWords-Client
view release on metacpan or search on metacpan
examples/v201809/advanced_operations/add_html5_ad.pl view on Meta::CPAN
# for the list of available template fields.
my $media = Google::Ads::AdWords::v201809::TemplateElementField->new({
name => "Custom_layout",
fieldMedia => $media_bundle,
type => "MEDIA_BUNDLE"
});
my $layout = Google::Ads::AdWords::v201809::TemplateElementField->new({
name => "layout",
fieldText => "Custom",
type => "ENUM"
});
my $adData = Google::Ads::AdWords::v201809::TemplateElement->new({
uniqueName => "adData",
fields => [$media, $layout]});
$html5_ad->set_templateElements([$adData]);
# Create the AdGroupAd.
my $html5_ad_group_ad = Google::Ads::AdWords::v201809::AdGroupAd->new({
adGroupId => $ad_group_id,
ad => $html5_ad,
# Additional properties (non-required).
status => "PAUSED"
});
my $ad_group_ad_operation =
Google::Ads::AdWords::v201809::AdGroupAdOperation->new({
operator => "ADD",
operand => $html5_ad_group_ad
});
push @operations, $ad_group_ad_operation;
# Add HTML5 ad.
my $result =
$client->AdGroupAdService()->mutate({operations => \@operations});
# Display results.
if ($result->get_value()) {
foreach my $ad_group_ad (@{$result->get_value()}) {
printf "New HTML5 ad with id \"%d\" and display url " .
"\"%s\" was added.\n",
$ad_group_ad->get_ad()->get_id(),
$ad_group_ad->get_ad()->get_displayUrl();
}
} else {
print "No HTML5 ads were added.\n";
}
return 1;
}
# Don't run the example if the file is being included.
if (abs_path($0) ne abs_path(__FILE__)) {
return 1;
}
# Log SOAP XML request, response and API errors.
Google::Ads::AdWords::Logging::enable_all_logging();
# Get AdWords Client, credentials will be read from ~/adwords.properties.
my $client = Google::Ads::AdWords::Client->new({version => "v201809"});
# By default examples are set to die on any server returned fault.
$client->set_die_on_faults(1);
# Call the example
add_html5_ad($client, $ad_group_id);
( run in 1.119 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )