Re: Adwords API - Upgrading to V201206 and OAuth

2012-10-05 Thread Oliver
MCS will not return IDs of unlinked accounts. Use the CustomerService instead for this purpose as it always returns the ID. It's simpler and easier than using the InfoService. Oliver On Friday, October 5, 2012 3:47:50 PM UTC+1, Nakul Ringshia wrote: > > Hi Kevin > > I have implemented the co

Re: Adwords API - Upgrading to V201206 and OAuth

2012-10-05 Thread Nakul Ringshia
Hi Kevin I have implemented the code to call the Managed Customer Service to get the client customer id. However I have found a few emails for which the MCS is not returning the customer id (and hence I have unable to download reports). Based on my understanding its because these emails are ta

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-21 Thread Anash P. Oommen
Hi Nakul, As Kevin mentioned, yes, ClientLogin is deprecated, and there's a 3 year deprecation policy for Google Apps. Google Apps and Google AdWords are however two different products guided by different deprecation policies, so AdWords may decide to drop support for ClientLogin at an earlier

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-20 Thread Kevin Winter
Hi Alexander, Unfortunately, another team manages ClientLogin, so I can't speak with authority. Here's the blog post announcing the deprecation: http://googledevelopers.blogspot.com/2012/04/changes-to-deprecation-policies-and-api.html We'll probably provide support in the AdWords API until so

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-20 Thread Nakul Ringshia
Thanks Kevin I tried setting the ClientCustomerId in the request header and that worked!!!. I think using this approach makes sense (there's still some work that I will need to do - calling the managed service account to get the client id based on the email). One key factor that will determin

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-19 Thread Sophornia Bartee
On Tuesday, September 18, 2012 4:58:53 AM UTC-7, Nakul Ringshia wrote: > > Hi > > I am currently using v201109 to fetch data (keyword, adgroup and criteria > reports) from Google Adwords (using the dot net client library). Currently > we are using the ClientLogin authorization method. Since th

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-19 Thread Kevin Winter
This is slightly inaccurate. The error message refers to the use of clientEmail to identify which account is being targeted with a request. You'll need to specify a clientCustomerId instead (which can be retrieved with the ManagedCustomerService as mentioned below. You don't have to authenti

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-19 Thread Ken Foster
BTW, you don't need to hard code the list of AccountID's, you can use the ManagedCustomerService to retrieve the account tree for an MCC. On Wednesday, September 19, 2012 8:43:19 AM UTC-4, Alexander Nitschke wrote: > > You can use OAuth 2.0 but it isn't really necessary. Your assumption > regard

Re: Adwords API - Upgrading to V201206 and OAuth

2012-09-19 Thread Alexander Nitschke
You can use OAuth 2.0 but it isn't really necessary. Your assumption regarding OAuth2 with v201206 is wrong as the old login still works. What doesn't work is the login as a simple client, only logins as MCC will work with v201206. So you have to login into the MCC, and then change the ClientID

Adwords API - Upgrading to V201206 and OAuth

2012-09-18 Thread Nakul Ringshia
Hi I am currently using v201109 to fetch data (keyword, adgroup and criteria reports) from Google Adwords (using the dot net client library). Currently we are using the ClientLogin authorization method. Since this version will sunset on Oct 26, 2012, I have started the upgrade to v201206 (downl