Re: Download daily report using old api

2010-12-16 Thread AdWords API Advisor
Hi, I believe you took my example code too literally. The headers are only email, password, etc. You shouldn't include the SOAP envelope and header elements in your header. Also, you shouldn't use the v13 namespace unless you've already defined it. Rather than struggle with v13 reports, have

Re: Download daily report using old api

2010-12-15 Thread AdWords API Advisor
Hi, The v13 API doesn't use a RequestHeader element to wrap the header values. Instead each header value is it's own SOAP header. soapenv:Envelope ... soapenv:Header v13:email.../v13:email v13:password.../v13:password ... /soapenv:Header soapenv:Body ...

Re: Download daily report using old api

2010-12-15 Thread cvijayarenu
i am trying to build the header like that but without any success. $soapHeaders = 'soapenv:Envelope' .'soapenv:Header' .'v13:email'.$email.'/v13:email' .'v13:password'.$password.'/v13:password' .'v13:clientEmail'.$client_email.'/v13:clientEmail'

Re: Download daily report using old api

2010-12-14 Thread AdWords API Advisor
Hi, In the old API, you can get all report jobs using http://code.google.com/apis/adwords/docs/developer/ReportService.html#getAllJobs method, but I don't think it can download a report scheduled to run daily. I could check with the AdWords team and let you know. As for v13 code examples on

Re: Download daily report using old api

2010-12-14 Thread cvijayarenu
Is there any example using php library? I know the php libraray does not support v13. so i wanted to know any example to use php for v13. I checked

Re: Download daily report using old api

2010-12-14 Thread j.e.frank
Don't take this answer as 100% certain, because I worked on something similar to this but it was a few years ago so my memory is not that clear. We had some reports scheduled as templates to run daily. We gave these reports a well-known name based on what kind of report it was (e.g.

Re: Download daily report using old api

2010-12-14 Thread cvijayarenu
I am trying with this code. $options = array ('email' = $email, 'password' = $password, 'clientEmail' = $client_email, 'useragent' = $useragent, 'developerToken' = $developer_token, 'applicationToken' = $application_token ); $namespace = 'https://adwords.google.com/api/adwords/v13';

Download daily report using old api

2010-12-13 Thread cvijayarenu
Hello, I am trying to find an example to dowload daily reports using the old api ( v13). The example present was to create a report job which returns a job id and the use that job id to get the report. Isn't there a way to download the reports which are generated daily? We have created a