hi

I din't gettingd details from "CampaignStats". My code is pasted here.
When i try print_r($campaign); ( i'm using PHP) CampaignStats array
getting values null.

  // Log SOAP XML request and response.
  $user->LogDefaults();

  // Get the CampaignService.
  $campaignService = $user->GetCampaignService('v201008');

  // Create selector.
  $selector = new CampaignSelector();

  // Get all campaigns.
  $page = $campaignService->get($selector);

  // Display campaigns.
  if (isset($page->entries)) {
    foreach ($page->entries as $campaign) {
      print 'Campaign with name "' . $campaign->name . '" and id "'
          . $campaign->id . "\" was found.\n";
      echo '<pre>';
      print_r($campaign);
    }
  }

Thanks in advance.
Regards
Deepak

-- 
=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~
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 [email protected]
To unsubscribe from this group, send email to
[email protected]
For more options, visit this group at
http://groups.google.com/group/adwords-api?hl=en

Reply via email to