Skip to main content

Add facebook connect authentication to your Django website.

Project description

About

This package adds facebook connect authentication to a Django web site. Many of the existing packages are either out of date, using soon to be deprecated facebook apis (along with out of date documentation), or simply do not work quite right.

This package is small, does not have external dependencies, and should “just work”.

Install

You will need to create a Facebook application for facebook connect to work.

Set the “Site URL”, located in your facebook applications settings to:

http://<your-project’s-address>/facebook_connect

Note: during development, you may set the above to localhost, e.g. http://127.0.0.1:8000/facebook_connect

Configure the following settings in your settings.py:

FACEBOOK_LOGIN_REDIRECT = “/” # (optional, defaults to “/”)

FACEBOOK_APP_ID = “<place your app id here>” # required

FACEBOOK_APP_SECRET = “<place your app secret code here>” # required

FACEBOOK_SCOPE = “email” # (optional, defaults to “email”)

Note: FACEBOOK_SCOPE determines what permissions facebook will ask from your users,

and in turn, give you access to. For example, your scope may look like: ‘read_stream,publish_stream,offline_access,user_photos’, whereas above we are only asking for email access. This package comes with the python_facebook_sdk included for retrieving user information - but does not gather more than the name and email at this time (perhaps in future versions).

Add “facebook_connect” to your list of installed apps:

INSTALLED_APPS = ( ‘facebook_connect’, )

And include faceboook_connect.urls within your urls.py:

urlpatterns = pattern(‘’,

(r’^facebook_connect/’, include(‘facebook_connect.urls’)),

)

Finally, run:

python manage.py syncdb

Or, if you’re using South:

python manage.py schemamigration facebook_connect –initial

to create the initial migration, and

python manage.py migrate facebook_connect

to migrate the database.

Usage

These tags are now usable in your templates:

{% load facebook_connect %}

{% facebook_button %}

{% facebook_script %}

Credits

Inspiration was taken from this “django-facebookconnect” package: https://github.com/teebes/django-facebookconnect/ as well as the views/models responsible for the facebook –> django user mapping.

Security code for validating the signedRequest is by Sunil Arora: http://sunilarora.org/parsing-signedrequest-parameter-in-python-bas

Project details


Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

django-facebook-connect-1.0.tar.gz (10.2 kB view hashes)

Uploaded Source

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page