1👍
✅
You perform a call to a remote server that you can’t reach / isn’t configured / isn’t running.
It’s not an issue with Django or DRF.
9👍
I was getting the same error and it may be due to email verification. I add following code in my setting.py file and now authentication working perfectly
ACCOUNT_EMAIL_VERIFICATION = 'none'
ACCOUNT_AUTHENTICATION_METHOD = 'username'
ACCOUNT_EMAIL_REQUIRED = False
- [Django]-Django forms custom validation on two fields one or the other
- [Django]-How to associate existsing users from django.contrib.auth with Python Social Auth (Google backend)?
Source:stackexchange.com