Metadata-Version: 1.0
Name: django-la-facebook
Version: 0.1.1
Summary: Definitive facebook auth for Django
Home-page: http://github.com/cartwheelweb/django-la-facebook
Author: pydanny
Author-email: pydanny@pydanny.com
License: BSD
Description: ===========
        README
        ===========
        
        Dedicated facebook authentication for Django that does it via the backend and not javascript. Has lots of tests and a trivial-to-setup test project with working code.
        
        Reason: http://pydanny.blogspot.com/2011/01/what-i-want-for-django-facebook-connect.html
        
        Full Documentation: http://django-la-facebook.readthedocs.org/en/latest/index.html
        
        
        Usage
        -----
        
        
        Get ``django-la-facebook`` into your python path::
        
        pip install django-la-facebook
        
        Add ``la_facebook`` to your INSTALLED_APPS in settings.py::
        
        INSTALLED_APPS = (
        ...
        'la_facebook',
        ...
        )
        
        Add ``la_facebook`` to your root urlconf (urls.py)::
        
        urlpatterns = patterns('',
        ...,
        url(r"^la_facebook/", include("la_facebook.urls")),
        ...,
        )
        
        Add settings just as::
        
        FACEBOOK_ACCESS_SETTINGS = {
        "FACEBOOK_APP_ID": FACEBOOK_APP_ID,
        "FACEBOOK_APP_SECRET": FACEBOOK_APP_SECRET,
        # The following keys are optional
        # "CALLBACK": "la_facebook.callbacks.default.default_facebook_callback",
        # "PROVIDER_SCOPE": ['email','read_stream'],
        # "LOG_LEVEL": "DEBUG",
        # "LOG_FILE": "/tmp/la_facebook.log",
        }
Platform: UNKNOWN
Classifier: Development Status :: 5 - Production/Stable
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Framework :: Django
