[Django]-Django Multiple Authentication Backend for one project
49👍 ✅ You can have multiple authentication backends. Just set the AUTHENTICATION_BACKENDS in settings.py of your Django project to list the backend implementations you want to use. For example I often use a combination of OpenID authentication and the standard Django authentication, like this in my settings.py: AUTHENTICATION_BACKENDS = ( ‘django.contrib.auth.backends.ModelBackend’, ‘django_openid_auth.auth.OpenIDBackend’, ) In this … Read more