Re: OAuth - didn't see it mentioned so I thought I'd ask

2013-01-14 Thread David Torres (AdWords API Team)
Hi VijayRaj, 1) You can use the CustomerSyncService to find out changes that occurred within a DateRange. 2) The currency is configured at the account level, you can use the CustomerService to find out what the currency code is for the account. Best, - David Torres - AdWords API Team On We

Re: OAuth - didn't see it mentioned so I thought I'd ask

2013-01-08 Thread VijayRaj Chauhan
Hi, I have been using Google Adwords API for sometime now but couldn't find any solution for the couple of questions ... 1) Is it possible to get the list of modified campaigns after a given date (without using download API) ? I searched in forums but was not able to find any sol

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-08-13 Thread Kevin Winter
Hi VijayRaj, I'm glad its working for you. If you are using reports, you'll want to make sure you're using 1.7.1 - 1.7.0 had a bug with report downloads that 1.7.1 fixes. Regarding account info, you can use the CustomerService to obtain the information for the targeted account - in your scen

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-08-13 Thread VijayRaj Chauhan
Hi Kevin, OAuth2 authentication is now working fine for javaWIth that token how do I get the current users account information ??. I referred to the GetAccountHierarchy.java example but it returns all the client emails as well as mcc account emails. For e.g, if MCC_1 account is linked to MC

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-30 Thread Kevin Winter
Hi VijayRaj, I think that at this point this is a client-library-specific issue - could you please file an issue on the project issue tracker with your stacktrace and a quick description of your environemnt? We're still looking into this, but having it on the issue tracker will keep the libr

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-25 Thread VijayRaj Chauhan
Hi Kevin, Kindly update this thread once you get any clue about this issue. TIA, VijayRaj On Wednesday, 25 July 2012 20:31:48 UTC+5:30, Kevin Winter wrote: > > Hi VijayRaj, > We suspect that the reflections library we're using may have issues with > certain classpath setups > (JBoss

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-25 Thread Kevin Winter
Hi VijayRaj, We suspect that the reflections library we're using may have issues with certain classpath setups (JBossin particular). We're looking into this. - Kevin Winter AdWords API Team On Wednesday, July 25, 2012 3:59:49 AM UT

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-25 Thread VijayRaj Chauhan
Hi Kevin, It works fine when I used in IDE...I get this error when I bundled these jars in our web application inside the lib folder...Other than these jars we have only tomcat jars... TIA, VijayRaj On Friday, 20 July 2012 19:40:23 UTC+5:30, Kevin Winter wrote: > > Hi VijayRaj, > I just set

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-20 Thread Kevin Winter
Hi VijayRaj, I just set up a new eclipse project that only had the jars from adwords-axis-examples-1.5.0-dependencies and added the source of the examples. I then ran GetCampaigns (which used my homedir ads.properties file) successfully. What's different about your environment? Are you usi

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-07-17 Thread VijayRaj Chauhan
Hi Kevin, I have included all the dependency jars from *adwords-axis-examples-1.5.0-dependencies.tar *in my projectWhile trying to get Campaigns I get the following error java.net.URISyntaxException: Illegal character in opaque part at index 7 > at java.net.URI$Parser.fail(URI.java:2809) >

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-05-31 Thread VijayRaj Chauhan
Hi Kevin, I have filed an issue in the issue trackerKindly have a look at it and let us know about the status.. TIA, VijayRaj On Wednesday, 30 May 2012 00:24:34 UTC+5:30, Kevin Winter wrote: > > Hi VijayRaj, > I think this is a bug in our maven pom.xml - it's pulling in an old > version

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-05-29 Thread Kevin Winter
Hi VijayRaj, I think this is a bug in our maven pom.xml - it's pulling in an old version of the google oauth libs that doesn't have this field and it goes first on the classpath overriding the more recent entry. Could you please file an issue on our issue tracker while we figure out how best

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-05-28 Thread VijayRaj Chauhan
Hi Kevin, I have been trying Oauth1.0a authentication from the link which you have mentioned earlier http://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201109/misc/OAuthExample.java I also extracted all the dependencies from the fi

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-26 Thread Anash P. Oommen
Hi Ewan, Also look at https://developers.google.com/appengine/docs/python/urlfetch/overview#Quotas_and_Limits. This could limit how big a report you can download and process on AppEngine. Cheers, Anash P. Oommen, AdWords API Advisor. On Friday, 6 April 2012 18:55:53 UTC+5:30, Kevin Winter wr

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-12 Thread Kevin Winter
Hi Vijayraj, I think this dependency is transitive - i.e. the library itself doesn't directly depend on it, but one of the libraries the client library depends on DOES need it. I'm not sure which library pulls it in or where it may be located on maven (jarfinder doesn't help either). We're worki

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-12 Thread Vijayraj Chauhan
Hi Kevin, I have downloaded the following jar files from maven *ads-lib-1.0.0.jar* *adwords-axis-1.0.0.jar* *guice-3.0.jar* *commons-configuration-1.8.jar* *reflections-0.9.6.jar* * * I am not able to find this class in maven * com.google.common.cache.CacheLoader...*can you let me know which jar

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-09 Thread Kevin Winter
Hi Vijayraj, Currently, the recommend solution is to use Maven and add the correct artifactId and let Maven pull in the AdWords Library as a dependency. The examples pom.xml can be used for this: http://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/pom.xml Alterna

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-09 Thread Vijayraj Chauhan
Hi Kevin, The example link which you provided for OAuth 1.0a works fine. However looking at the example it seems we still have to pass the clientId even after authenticating..Just the authtoken is not enough to get the campaign info ?? >From where can I download the jar files for the latest ja

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-06 Thread Kevin Winter
Hi Ewan, In theory (and for very simple usage), yes. However, we're still troubleshooting this issue: http://code.google.com/p/google-api-ads-java/issues/detail?id=3 We've narrowed it down to some interaction with the Jax-ws generated classes and production appengine - we've been able to rep

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-06 Thread Ewan Heming
You shouldn't need to link an account to a your MCC to use ClientLogin or oAuth: Just use the account ClientLogin/oAuth tokens with your developer token. -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://grou

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-06 Thread Kevin Winter
Hi Vijayraj, We've published an example showing how to do OAuth 1.0a with the new java library here: http://code.google.com/p/google-api-ads-java/source/browse/examples/adwords_axis/src/main/java/adwords/axis/v201109/misc/OAuthExample.java It depends on how you set it up. You can either auth

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-06 Thread Vijayraj Chauhan
Hi Kevin, Thanks for the update.It will be great if you can help me with code example for using OAuth 1.0a with Adwords I also wanted to know will it still require to link the customer account to our MCC account after migrating to OAuth authentication?? TIA, Vijayraj On Thursday, 5 Apr

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-05 Thread Kevin Winter
Hi Vijayraj, We just released the stable version of the new java library: http://code.google.com/p/google-api-ads-java/ This rewritten library works with maven and supports OAuth 1.0a as an authentication mechanism. We're committing to full support of the new library at this time - it is no

Re: OAuth - didn't see it mentioned so I thought I'd ask

2012-04-05 Thread Vijayraj Chauhan
Hi Kevin, Any update on this??? Does the Java client library support any other authentication other than ClientLogin? TIA, Vijayraj On Monday, 7 November 2011 21:04:06 UTC+5:30, Kevin Winter wrote: > > Hi Vijayraj, > No, the Java client library does not support AuthSub (it's an older > prot

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-11-07 Thread Kevin Winter
Hi Vijayraj, No, the Java client library does not support AuthSub (it's an older protocol like ClientLogin). Unfortunately, ClientLogin will be the only supported authentication until the rewritten java client library is ready. - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-11-06 Thread Vijayraj Chauhan
Does it supports AuthSub Authentication? If not, is there any other way for authentication other than ClientLogin using Java? Vijayraj -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/g

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-11-04 Thread Kevin Winter
Hi Vijayraj, I apologize that the recent release of the Java client library does not have OAuth support. We have an internal project that has rewritten the Java client library from the group up. It includes support for OAuth, Maven2 and many other useful features. However, at the time v2011

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-11-04 Thread Vijayraj Chauhan
Hi Kevin, I have been following adwords api blog for a while now and thus noticed that the updated versions of all the client libraries have been released...:) However i was unable to find any examples regarding the authentication using OAuth for the Java Client Library. I have the access tok

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-14 Thread Kevin Winter
Hi, We hope to release updated versions of all client libraries within a few weeks. - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-14 Thread Vijayraj Chauhan
Its sad that we were waiting for the OAuth authentication for a long time and now when its released it does not support Java client library ...Can you please let us know approximately when will it be released for Java. TIA, Vijayraj -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also fin

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-14 Thread Kevin Winter
Hi Vijayraj, The currently released version of the Java Client Library does not have support for OAuth, so there is no current example to link to. Once the java client library has been released with support for v201109 it will also have OAuth support (and an OAuth example). - Kevin Winter Ad

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-14 Thread Vijayraj Chauhan
Hi Kevin, Its great to hear that Google Adwords now support OAuth authentication. However after going through the blog i found that there is no example given for authentication using Java Client Library. It will be really helpful if you provide the code example using Java. TIA, Vijayraj -- =

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-12 Thread Kevin Winter
Hi Rob, Yes, the new Ad Hoc reports will be free of charge. The blog post I referenced above for OAuth support contains links to examples in the v201101 versions of the client libraries. The v201109 versions will also have support for OAuth with the new reports. Thanks for the feedback rega

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-12 Thread Kevin Winter
Hi Mikael, Unfortunately, the AdWords API does not yet support OAuth 2.0. It does support both OAuth 1.0 and 1.0a. - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.g

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-12 Thread Rob Ryan
Are we able to get a code sample using OAuth? As I see from the Java code these reports are free of charge correct? Only key thing I can think of not supported that would be great after this is being able to read the account currency and timezone in the ServicedAccountService. -- =~=~=~=~=~=~=

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-11 Thread MT
How about Oauth 2.0? I use that for Google Analytics API, would be convenient to use the same for AdWords. -Mikael On Oct 12, 12:06 am, Kevin Winter wrote: > Hi all, >   I just published a blog post regarding OAuth in > v201109:http://adwordsapi.blogspot.com/2011/10/adwords-api-now-fully-suppor

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-11 Thread Yagmur Coker
Thank you Kevin! On Tue, Oct 11, 2011 at 5:06 PM, Kevin Winter wrote: > Hi all, > I just published a blog post regarding OAuth in v201109: > http://adwo > rdsapi.blogspot.com/2011/10/adwords-api-now-fully-supports-oauth.html

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-11 Thread Kevin Winter
Hi all, I just published a blog post regarding OAuth in v201109: http://adwo rdsapi.blogspot.com/2011/10/adwords-api-now-fully-supports-oauth.html - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-11 Thread chris h
I'll not get too excited before I see an example. If Google doesn't give direction, I may try some experiments next week. On Oct 11, 12:53 pm, Yagmur Coker wrote: > Funny this is not mentioned in the > bloghttp://adwordsapi.blogspot.com/2011_10_01_archive.htmlas it's kind of a > big > change :)

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-11 Thread Yagmur Coker
Funny this is not mentioned in the blog http://adwordsapi.blogspot.com/2011_10_01_archive.html as it's kind of a big change :) This is great news! yagmur On Mon, Oct 10, 2011 at 3:04 PM, chris h wrote: > Hi Kevin, > > That's great news! Could you share info or a code sample on how it > works?

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-10 Thread chris h
Hi Kevin, That's great news! Could you share info or a code sample on how it works? - Chris On Oct 10, 10:23 am, Kevin Winter wrote: > Hi, >   Yes, OAuth is now supported. > > - Kevin Winter > AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and

Re: OAuth - didn't see it mentioned so I thought I'd ask

2011-10-10 Thread Kevin Winter
Hi, Yes, OAuth is now supported. - Kevin Winter AdWords API Team -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You re

OAuth - didn't see it mentioned so I thought I'd ask

2011-10-07 Thread chris h
Does the new adhoc report download support OAuth? -- =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ Also find us on our blog and discussion group: http://adwordsapi.blogspot.com http://groups.google.com/group/adwords-api =~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~=~ You received this messag