[Fixed]-Trying to create login with fb using django all auth

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?

  1. Add a Site for your domain, matching settings.SITE_ID (django.contrib.sites app).
  2. For each OAuth based provider, add a Social App (socialaccount app).
  3. Fill in the site and the OAuth app credentials obtained from the provide
👤Mounir

Leave a comment