Skip to content Skip to sidebar Skip to footer

Custom Users With Django Allauth

I am trying to use a custom user with django-allauth/social auth In settings.py, I have AUTHENTICATION_BACKENDS = ( # Needed to login by username in Django admin, regardless of

Solution 1:

I think you might be searching for a username with an email or viceversa. Try specifying this:

ACCOUNT_EMAIL_REQUIRED = True
ACCOUNT_AUTHENTICATION_METHOD = 'email'

Post a Comment for "Custom Users With Django Allauth"