https://github.com/mback2k/appengine-oauth-profile
Google App Engine OAuth Profile endpoint application
https://github.com/mback2k/appengine-oauth-profile
Last synced: 10 months ago
JSON representation
Google App Engine OAuth Profile endpoint application
- Host: GitHub
- URL: https://github.com/mback2k/appengine-oauth-profile
- Owner: mback2k
- License: mit
- Created: 2012-07-01T23:35:23.000Z (almost 14 years ago)
- Default Branch: master
- Last Pushed: 2024-10-19T21:07:22.000Z (over 1 year ago)
- Last Synced: 2024-10-28T19:24:18.920Z (over 1 year ago)
- Language: Python
- Homepage: https://oauth-profile.appspot.com/
- Size: 29.3 KB
- Stars: 1
- Watchers: 3
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: COPYING
Awesome Lists containing this project
README
Google App Engine - OAuth Profile
=================================
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"
}
OAuth 1.0 Endpoint
------------------
- 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
Web Service Endpoint
--------------------
- 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
Documentation
-------------
- 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
License
-------
* Released under MIT License
* Copyright (c) 2012-2015 Marc Hoersken