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
When AUTHENTICATION_BACKENDS is used in settings.py, the usual login does not work. However, after commenting it login work as per the expectation.
What would be the fix for this?
The text was updated successfully, but these errors were encountered:
You should add "django.contrib.auth.backends.ModelBackend" to your AUTHENTICATION_BACKENDS:
"django.contrib.auth.backends.ModelBackend"
AUTHENTICATION_BACKENDS
AUTHENTICATION_BACKENDS = [ "django.contrib.auth.backends.ModelBackend", "django_keycloak.auth.backends.KeycloakAuthorizationCodeBackend", ]
Sorry, something went wrong.
No branches or pull requests
When AUTHENTICATION_BACKENDS is used in settings.py, the usual login does not work. However, after commenting it login work as per the expectation.
What would be the fix for this?
The text was updated successfully, but these errors were encountered: