I am running a perl script on a sandbox account. Using the add_campaign.pl, I have added a couple of campaigns and using the get_all_campaigns.pl example, I can read them back. I copied that code into my script and it runs just fine; I get both campaigns returned.
So I did the same thing with an ad group. Used the example to create one (just put the campaign ID into the file), and it created one. Using the example file get_all_ad_groups.pl with the campaign ID pasted in returns the ad group. I copied and pasted the get_all_ad_groups.pl code into my script, but when it run, I get: Use of uninitialized value $default_properties_file in -e at /usr/local/share/perl/5.12.4/Google/Ads/AdWords/Client.pm line 73, <> line 4. Use of uninitialized value in concatenation (.) or string at /usr/local/share/perl/5.12.4/Google/Ads/AdWords/Client.pm line 346, <> line 4. Use of uninitialized value in concatenation (.) or string at /usr/local/share/perl/5.12.4/Google/Ads/AdWords/Client.pm line 346, <> line 4. No email/password specified. at /usr/local/share/perl/5.12.4/Google/Ads/AdWords/Client.pm line 282, <> line 4. It's in the same script as the get_all_campaigns code, and all I have changed is put the campaign ID in, so does anyone have any clues as to why the $default_properties_file is not being initialized the second time it's being called? Here is the code that I am running which is causing the errors: # Log SOAP XML request and response. Google::Ads::AdWords::Logging::enable_soap_logging(); # Get AdWords Client, credentials will be read from ~/adwords.properties. $adwordsClient = Google::Ads::AdWords::Client->new({version => "v201101"}); # By default examples die on any server returned fault. $adwordsClient->set_die_on_faults(1); # Replace with valid values of your account. my $campaign_id = "365332"; # Create predicates. my $campaign_predicate = Google::Ads::AdWords::v201101::Predicate->new({ field => "CampaignId", operator => "IN", values => [$campaign_id] }); # Create selector. my $selector = Google::Ads::AdWords::v201101::Selector->new({ fields => ["Id", "Name"], predicates => [$campaign_predicate], ordering => [Google::Ads::AdWords::v201101::OrderBy->new({ field => "Name", sortOrder => "ASCENDING" })] }); # Get all ad groups. my $page = $adwordsClient->AdGroupService()->get({serviceSelector => $selector}); # Display ad groups. if ($page->get_entries()) { my @results = ref($page->get_entries()) eq "ARRAY" ? @{$page->get_entries()} : ($page->get_entries()); foreach my $ad_group (@results) { printf "Ad group with name \"%s\" and id \"%d\" was found.\n", $ad_group->get_name(), $ad_group->get_id(); } } else { print "No ad groups were found.\n"; } -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this message because you are subscribed to the Google Groups "AdWords API Forum" group. To post to this group, send email to adwords-api@googlegroups.com To unsubscribe from this group, send email to adwords-api+unsubscr...@googlegroups.com For more options, visit this group at http://groups.google.com/group/adwords-api?hl=en