Metadata-Version: 1.0
Name: fboauth2
Version: 0.1.0
Summary: Bare minimum Facebook OAuth2 client
Home-page: https://github.com/marksteve/fboauth2
Author: Mark Steve Samson
Author-email: hello@marksteve.com
License: MIT
Description: 
        ========
        fboauth2
        ========
        
        Bare minimum Facebook OAuth2 client
        
        -----
        Usage
        -----
        ::
            from fboauth2 import FBClient
            fbclient = FBClient(CLIENT_ID, CLIENT_SECRET, scope='publish_stream',
                                redirect_uri='http://example.com/callback')
            # Point users to auth url
            redirect(fbclient.get_auth_url())
            # Pass code to get access token
            code = params['code']
            access_token = fbclient.get_access_token(code)
            # Make graph requests
            me = fbclient.graph_request('me')
            print me['name']
        
        -------
        License
        -------
        http://marksteve.mit-license.org/
        
Platform: any
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: MIT License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python :: 2 :: Only
Classifier: Topic :: Internet :: WWW/HTTP
Classifier: Topic :: Software Development :: Libraries
