This Google App Engine application provides a OAuth and Web Service Endpoint to access the specific Google Account information provided to Google App Engine.
The following example shows a dictionary of returned information:
{
"id": "123456789123456789123"
"email": "example@googlemail.com",
"nickname": "example"
}
- Getting a Request Token: https://oauth-profile.appspot.com/_ah/OAuthGetRequestToken
- Redirecting a User to Authorize: https://oauth-profile.appspot.com/_ah/OAuthAuthorizeToken
- Getting an Access Token: https://oauth-profile.appspot.com/_ah/OAuthGetAccessToken
- Retrieving the User Information (OAuth 1.0): https://oauth-profile.appspot.com/oauth/v1/userinfo
- Retrieving the User Information (OAuth 2.0): https://oauth-profile.appspot.com/oauth/v2/userinfo
- OAuth for Python Overview: https://developers.google.com/appengine/docs/python/oauth/overview
- Registration for Web-Based Applications (OAuth 1.0): https://developers.google.com/accounts/docs/RegistrationForWebAppsAuto
- Released under MIT License
- Copyright (c) 2012-2015 Marc Hoersken info@marc-hoersken.de