instagram_auth is a Django authentication backend
TODO Detailed documentation is at readthedocs.org.
- add
instagram_auth
to yourINSTALLED_APPS
setting like this
INSTALLED_APPS = [ ... 'instagram_auth', ]
- Include instagram_auth URLconf in your project urls.py like this
url(r'^accounts/', include(instagram_auth.urls)),
- Run
python manage.py migrate
to create instagram_auth models