1👍
✅
Add url(r'^accounts/', include('allauth.urls')),
to your urls.py
as mentionned on the documentation of django allauth
EDIT:
Did you followed theses steps?
- Add a Site for your domain, matching settings.SITE_ID (django.contrib.sites app).
- For each OAuth based provider, add a Social App (socialaccount app).
- Fill in the site and the OAuth app credentials obtained from the provide
Source:stackexchange.com