We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Hi there,
I'm attempting to use a custom Oauth2 based social auth backend as per https://python-social-auth.readthedocs.io/en/latest/backends/implementation.html#oauth
However, I am unable to get this to work. I've added the following:
BaseOAuth2
AUTHENTICATION_BACKENDS = ( 'starterkit.backends.test.TestOAuth2', 'django.contrib.auth.backends.ModelBackend', )
SOCIAL_AUTH_PIPELINE = ( 'social_core.pipeline.social_auth.social_details', 'social_core.pipeline.social_auth.social_uid', 'social_core.pipeline.social_auth.auth_allowed', 'starterkit.backends.test.TestOAuth2.user_data', 'social_core.pipeline.social_auth.social_user', 'social_core.pipeline.social_auth.associate_user', 'social_core.pipeline.social_auth.load_extra_data', 'social_core.pipeline.user.user_details', )
My question is:
This is likely an implementation on our code - I'm really checking that this approach is valid.
Thanks
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Hi there,
I'm attempting to use a custom Oauth2 based social auth backend as per https://python-social-auth.readthedocs.io/en/latest/backends/implementation.html#oauth
However, I am unable to get this to work. I've added the following:
BaseOAuth2
My question is:
This is likely an implementation on our code - I'm really checking that this approach is valid.
Thanks
The text was updated successfully, but these errors were encountered: