Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-21 Thread Eric Koleda
Hi, Creatives are known as ads in the latest versions of the API, and likewise the corresponding report is the AD_PERFORMANCE_REPORT: http://code.google.com/apis/adwords/docs/appendix/reports.html#ad Best, - Eric Koleda, AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Als

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-14 Thread Nalica
Thanks Anash. I got most of my problems solved. One last issue (hopefully) that I have to figure out is that currently I am getting a Creative report through the ReportService v13. I went through all reportType supported by the AdHoc Report v201109 and the closest thing seemed to be CREATIVE_CON

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-13 Thread Anash P. Oommen
Hi Nalica, CAPTCHA challenge is thrown by the ClientLogin API ( http://code.google.com/apis/accounts/docs/AuthForInstalledApps.html) if you request a large number of authTokens in a short period of time. It has nothing to do with AdWords API as such, so if you reuse your authTokens, you won't g

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-13 Thread Nalica
Thanks Anash. The Id I have is an MCC account. I will use the API to retrive the list of child accounts. I have some questions on the CAPTCHA challenge. I am creating an automation to download the report. It won't be possible to respond to the CAPTCHA challenge within the automation. I have a

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-12 Thread Anash P. Oommen
Hi Nalica, There are 2 possibilities. 1) The customer id you have is an Advertiser account. If so, run a normal AdWords api report. 2) The customer id you have is an MCC account (and hence represents multiple accounts). In this case, use ServicedAccountService.get to retrieve the list of child

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-10 Thread Nalica
Thanks Anash. I added auth token to the config file (AdwordsUser::Config::AuthToken) and now I got the same CUSTOMER_SERVING_TYPE_REPORT_MISMATCH error from both Library and NoClientLibrary versions. What do I need to do differently in order to not download a cross- client report? I only have on

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-10 Thread Anash P. Oommen
Hi Nalica, CUSTOMER_SERVING_TYPE_REPORT_MISMATCH typically means that you are trying to download a cross-client report using v201109 reports. v201109 API doesn't support cross-client reports any more and will throw errors if you request one. You need to request reports for one client at a time

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-02-10 Thread Nalica
I am trying to use the Adhoc Report API to download reports. I tried both NoClientLibrary version (https://gist.github.com/1287940) and the Library version (http://code.google.com/p/google-api-adwords-dotnet/ source/browse/branches/v13.0/examples/csharp/v201109/ DownloadAdhocReport.cs) but have no

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-01-23 Thread Anash P. Oommen
Hi Peter, Thanks for putting up that snippet! I'll link to this snippet when I update the NoClientLibrary wiki for AdWords API .NET library. Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://a

Re: DotNet Library Upgrading to v201109 AdHoc Reports

2012-01-20 Thread Peter S.
The DotNet Client does make the HTTP post with the report definition xml. That example was prior to the release of the DotNet Client API code being released but if you look under the hood its close to the same but with the API code writing to xml for you from a ReportDefinition. I should know it w

DotNet Library Upgrading to v201109 AdHoc Reports

2012-01-20 Thread aengland
I am using the DotNet Client Library and want to be sure I am retrieving my report properly. I followed the below example that says it is using the AdHoc Reports: http://code.google.com/p/google-api-adwords-dotnet/source/browse/branches/v13.0/examples/csharp/v201109/DownloadAdhocReport.cs I am re