Sebastian
Sebastian
Check if your user exists (`[email protected]`), is active and has a [usable password](https://github.com/django/django/blob/aa5fd84f53f09338d01a3cfd9fa6ab08e418fe00/django/contrib/auth/forms.py#L252-L263): ``` >>> from django.contrib.auth.models import User >>> User.objects.get(email='[email protected]', is_active=True).has_usable_password() True ```
Yes, use your custom user model. Check the actual email backend: ``` $ python manage.py diffsettings --all | grep "EMAIL_BACKEND" EMAIL_BACKEND = 'django.core.mail.backends.console.EmailBackend' ``` You can also test it in...
Did you actually provide the authentication details? Can you use some command line tool like [HTTPie](https://httpie.org/) and provide the output from your request? ( Don't forget to obfuscate any sensitive...