In accordance with our policy (http://www.google.com/support/ adwordsapi/bin/answer.py?answer=33152) of sunsetting older versions of
the AdWords API, we will turn off access to version 11 of the API on
Tuesday, August 26, 2008. Version 12 of the API has been available for
over four months now, and supports a number of new features (http://
www.google.com/apis/adwords/developer/releasenotes.html). We hope that
you've already taken the opportunity to upgrade your code.
The latest versions of the publicly available client libraries all
support version 12 of the API, so if you're using one of those, please
check the relevant README file for information on how to switch from
version 11 to 12. The migration process should be fairly
straightforward, but one thing in particular to watch out for is that
ad group ids are no longer ints; they're now longs in version 12.
As always, if you have any questions about the AdWords API or
upgrading to our latest versions, you can check out our Frequently
Asked Questions (http://www.google.com/support/adwordsapi/) or ask
them in our developer forum.
> In accordance with our policy (http://www.google.com/support/ > adwordsapi/bin/answer.py?answer=33152) of sunsetting older versions of
> the AdWords API, we will turn off access to version 11 of the API on
> Tuesday, August 26, 2008. Version 12 of the API has been available for
> over four months now, and supports a number of new features (http://www.google.com/apis/adwords/developer/releasenotes.html). We hope that
> you've already taken the opportunity to upgrade your code.
> The latest versions of the publicly available client libraries all
> support version 12 of the API, so if you're using one of those, please
> check the relevant README file for information on how to switch from
> version 11 to 12. The migration process should be fairly
> straightforward, but one thing in particular to watch out for is that
> ad group ids are no longer ints; they're now longs in version 12.
> As always, if you have any questions about the AdWords API or
> upgrading to our latest versions, you can check out our Frequently
> Asked Questions (http://www.google.com/support/adwordsapi/) or ask
> them in our developer forum.
> Reminder: if you haven't yet upgraded from v11 to v12 of the AdWords
> API, please do so before Tuesday, August 26.
> Cheers,
> -Jeff Posnick, AdWords API Team
> On Aug 7, 4:27 pm, AdWords API Advisor <adwordsapiadvi...@google.com>
> wrote:
> > In accordance with our policy (http://www.google.com/support/ > > adwordsapi/bin/answer.py?answer=33152) of sunsetting older versions of
> > the AdWords API, we will turn off access to version 11 of the API on
> > Tuesday, August 26, 2008. Version 12 of the API has been available for
> > over four months now, and supports a number of new features (http://www.google.com/apis/adwords/developer/releasenotes.html). We hope that
> > you've already taken the opportunity to upgrade your code.
> > The latest versions of the publicly available client libraries all
> > support version 12 of the API, so if you're using one of those, please
> > check the relevant README file for information on how to switch from
> > version 11 to 12. The migration process should be fairly
> > straightforward, but one thing in particular to watch out for is that
> > ad group ids are no longer ints; they're now longs in version 12.
> > As always, if you have any questions about the AdWords API or
> > upgrading to our latest versions, you can check out our Frequently
> > Asked Questions (http://www.google.com/support/adwordsapi/) or ask
> > them in our developer forum.
> > Cheers,
> > -Jeffrey Posnick, AdWords API Team
I am having a really hard time finding the latest JAVA api jars. The
download link appears to only contain the javadocs. Also, no-where
can I find the README that shows the simple process of migrating from
v11 to v12.
I posted a response to your other post asking about the jars, but
for me the only thing I needed to do to go from v11 to v12 was change
how I initialize the AdwordsUser:
Map params = new HashMap();
params.put("version", "v12");
// below is same as before...
params.put("email", ...);
params.put("password", ...);
params.put("developerToken",...);
params.put("applicationToken", ...);
params.put("useragent", ...);
params.put("clientId", ...);
AdWordsUser user = new AdWordsUser(params);
On Sep 4, 2:11 pm, Troy <t...@beachaudio.com> wrote:
> I am having a really hard time finding the latest JAVA api jars. The
> download link appears to only contain the javadocs. Also, no-where
> can I find the README that shows the simple process of migrating from
> v11 to v12.