Re: Download adgroup and keywords for multiple clients

2012-01-23 Thread aengland
Hi Anash, Will setting the ClientCustomerId in this fashion work for a multiple threads in .NET? I believe that when setting this property in multiple threads it will cause threads to overlap each other since I think this ClientCustomerId property is global. For example, I don't believe I can ki

Re: Download adgroup and keywords for multiple clients

2011-11-30 Thread Anash P. Oommen
Hi Nikhil, Some more useful tips: 1. If you want to download the report in memory instead of dumping to disk, then ClientReport report = new ReportUtilities().GetClientReport(definition); string reportText = report.Text; 2. If you are requesting a GZIPPED report format (that's faster for down

Re: Download adgroup and keywords for multiple clients

2011-11-30 Thread Anash P. Oommen
Hi Nikhil, Try this: (user.Config as AdWordsAppConfig).ClientCustomerId = "YOUR_CUSTOMER_ID_HERE"; new ReportUtilities(user).DownloadReport(definition, path); Cheers, Anash P. Oommen, AdWords API Advisor. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discuss

Download adgroup and keywords for multiple clients

2011-11-30 Thread Nikhil Gaur
Hi I am trying to fetch reports for multiple clients in Adwords API v201109. As this version doesn't supports cross client reports I am trying to fetch reports for each client one by one. First I have fetched account list and then reports for each client. Problem is I am using Do Net client libra