Facebook auth login library based on Django class based structure
A stable for Django >= 1.7 & Python >= 2.7
Install django_facebook_auth_helper
pip install django_facebook_auth_helper
Add django_facebook_auth to INSTALLED_APPS
INSTALLED_APPS = ( 'django_facebook_auth', )
Add authentication backends to AUTHENTICATION_BACKENDS
AUTHENTICATION_BACKENDS = ( 'django_facebook_auth.backends.FacebookBackend', )
Add facebook settings to settings.py
FACEBOOK_APP_ID = YOUR_APP_ID FACEBOOK_APP_SECRET = 'YOUR_APP_SECRET' FACEBOOK_REDIRECT_URI = 'http://localhost:8000/login/'
Import django_facebook_auth modules to views.py
from django_facebook_auth.views import FacebookLoginMixin from django_facebook_auth.models import FacebookSession