GOOGLE-ADWORDS-PERL-CLIENT
view release on metacpan or search on metacpan
examples/v201309/basic_operations/add_text_ads.pl view on Meta::CPAN
sub add_text_ads {
my $client = shift;
my $ad_group_id = shift;
my $num_ads = 5;
my @operations = ();
for(my $i = 0; $i < $num_ads; $i++) {
# Create text ad.
my $text_ad = Google::Ads::AdWords::v201309::TextAd->new({
headline => "Cruise to Mars #" . substr(uniqid(), 0, 8),
description1 => "Visit the Red Planet in style.",
description2 => "Buy your tickets now!",
displayUrl => "www.example.com/cruises",
url => "http://www.example.com"
});
# Create ad group ad for the text ad.
my $text_ad_group_ad = Google::Ads::AdWords::v201309::AdGroupAd->new({
adGroupId => $ad_group_id,
ad => $text_ad,
# Additional properties (non-required).
status => "PAUSED"
});
# Create operation.
my $text_ad_group_ad_operation =
Google::Ads::AdWords::v201309::AdGroupAdOperation->new({
operator => "ADD",
operand => $text_ad_group_ad
});
push @operations, $text_ad_group_ad_operation;
}
# Add text ads.
my $result = $client->AdGroupAdService()->mutate({
operations => \@operations
});
# Display results.
if ($result->get_value()) {
foreach my $ad_group_ad (@{$result->get_value()}) {
printf "New text 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 text 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 => "v201309"});
# By default examples are set to die on any server returned fault.
$client->set_die_on_faults(1);
# Call the example
add_text_ads($client, $ad_group_id);
( run in 0.448 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )