Alistair Collins
Alistair Collins

Reputation: 2220

Does AppEngine support OAuth 2.0?

Does Google AppEngine support OAuth 2.0? And, if so, can you suggest a good tutorial?

Upvotes: 0

Views: 588

Answers (2)

Dan Holevoet
Dan Holevoet

Reputation: 9183

For Google APIs there are libraries in:

that you can use on App Engine to access Google APIs using OAuth 2.0. The Python and Java libraries are built on top of a generic library that enables OAuth 2.0 functionality, so if you're accessing non-Google APIs that may be helpful. There may be libraries for other API platforms as well, but your mileage may vary.

Upvotes: 1

jimmartens
jimmartens

Reputation: 81

The short answer is yes, and they are moving access to their APIs to use 2.0. I have not come across any great tutorials out there but Google is building on their documentation for this. They do have code samples for non App Engine stuff out there.

https://developers.google.com/accounts/docs/OAuth2

Upvotes: 2

Related Questions