simpleauth
simpleauth copied to clipboard
Simple authentication for Python on Google App Engine supporting OAuth 2.0, OAuth 1.0(a) and OpenID
AFAICT, they recently changed their API to skip these fields unless explicitly requested.
Hi for basic authentication OpenID Connect is now required for endpoints such as the Azure V2 endpoint. Any plans to implement this in Simpleauth - I am using it for...
Google has turned off support for open id 2.0. Thanks for letting me know Google! https://cloud.google.com/appengine/docs/deprecations/open_id This breaks the yahoo login as implemented by simpleauth The demo project here: https://simpleauth.appspot.com...
Reported by [muijsenbergq](https://code.google.com/u/112367194840494255839/) --- Hi, I'm using your library and i need to be able to use stored tokens and try to reuse them. As a separate path from the...
Hi, crhym3 It seems that simpleauth supports using client_id / client_secret in the request-body for client authentication. Howerver, OAuth 2.0 protocol says, http://tools.ietf.org/html/rfc6749#section-2.3.1 ``` Including the client credentials in the...
Here's how it currently works: ``` # Map URLs to handlers Route('/auth/', handler='handlers.AuthHandler:_simple_auth', name='auth_login'), Route('/auth//callback', handler='handlers.AuthHandler:_auth_callback', name='auth_callback'), ``` Nice tip from @erichiggins: Perhaps a convenience function could be written that...
I'm thinking to make `_get__user_info()` call optional. This way one could spare a URL fetch call when existing users sign in as their profile data have probably been already stored...