-
Notifications
You must be signed in to change notification settings - Fork 1.1k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Open ID Connect #300
Comments
You are right, it's not supported yet. |
Has any work already been done towards it, or do you have any idea how difficult it will be to implement with the existing structure? |
I have no idea, wasn't aware of this stuff until you pointed that, it's probably not very hard to implement, just need time to review and plan the work. |
I've found only one other Python implementation so far, https://github.com/rohe/pyoidc The other libraries seem to be in the same situation Thanks! |
Checking the protocol definition and the the basic client implementation, it's really similar to OAuth2 backends but with the forced Google already implements this protocol AFAIK, so this will be useful to test it: SOCIAL_AUTH_GOOGLE_OAUTH2_SCOPE = ['openid']
SOCIAL_AUTH_GOOGLE_OAUTH2_EXTRA_DATA = ['id_token', 'refresh_token'] |
Google Open ID Connect is now working for me, and our in house open id once I configured it to use the Authorization header method That is the preferred method by Google, https://developers.google.com/accounts/docs/OAuth2WebServer#callinganapi so maybe it is best to change the defaults? Thanks for getting it working so quickly! |
When will you push the update to pypi? :) |
I don't have a date yet, I need to work in the docs and update and comment about the backward incompatible changes. |
I tried it. |
I combined the work of @omab and @kakky to make an extendable |
Fix already merged. |
Am I correct in understanding that Open ID Connect ( http://openid.net/connect/ ) is not supported yet?
The text was updated successfully, but these errors were encountered: