GOOGLE-ADWORDS-PERL-CLIENT
view release on metacpan or search on metacpan
examples/v201309/basic_operations/get_campaigns_with_awql.pl view on Meta::CPAN
# See the License for the specific language governing permissions and
# limitations under the License.
#
# This example gets all campaigns using AWQL. To add a campaign, run
# basic_operations/add_campaign.pl.
#
# Tags: CampaignService.get
# Author: David Torres <api.davidtorres@gmail.com>
use strict;
use lib "../../../lib";
use Google::Ads::AdWords::Client;
use Google::Ads::AdWords::Logging;
use Google::Ads::AdWords::v201309::OrderBy;
use Google::Ads::AdWords::v201309::Paging;
use Google::Ads::AdWords::v201309::Predicate;
use Google::Ads::AdWords::v201309::Selector;
use constant PAGE_SIZE => 500;
use Cwd qw(abs_path);
# Example main subroutine.
sub get_campaigns_with_awql {
my $client = shift;
# Get all the campaigns for this account.
my $query = "SELECT Id, Name, Status ORDER BY Name";
# Paginate through results.
my $page;
my $offset = 0;
do {
my $page_query = "${query} LIMIT ${offset}," . PAGE_SIZE;
# Get all campaigns.
$page = $client->CampaignService()->query({query => $page_query});
# Display campaigns.
if ($page->get_entries()) {
foreach my $campaign (@{$page->get_entries()}) {
printf "Campaign with name \"%s\" and id \"%d\" was found.\n",
$campaign->get_name(), $campaign->get_id();
}
}
$offset += PAGE_SIZE;
} while ($offset < $page->get_totalNumEntries());
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
get_campaigns_with_awql($client);
( run in 1.049 second using v1.01-cache-2.11-cpan-75ffa21a3d4 )