Metadata-Version: 1.1
Name: django-oauth-tokens
Version: 0.3.12
Summary: Application for getting, refreshing and storing OAuth access_tokens for Django standalone applications
Home-page: https://github.com/ramusus/django-oauth-tokens
Author: ramusus
Author-email: ramusus@gmail.com
License: BSD
Download-URL: http://pypi.python.org/pypi/django-oauth-tokens
Description: # Introduction
        
        Application for getting, storing and refreshing OAuth access_tokens for
        Django standalone applications without user manipulations.
        Applications also can imitate authorized requests on behalf of user
        
        # Providers
        
        ## Vkontakte
        
            OAUTH_TOKENS_VKONTAKTE_CLIENT_ID = ''                               # application ID
            OAUTH_TOKENS_VKONTAKTE_CLIENT_SECRET = ''                           # application secret key
            OAUTH_TOKENS_VKONTAKTE_SCOPE = ['ads,wall,photos,friends,stats']    # application scopes
            OAUTH_TOKENS_VKONTAKTE_USERNAME = ''                                # user login
            OAUTH_TOKENS_VKONTAKTE_PASSWORD = ''                                # user password
            OAUTH_TOKENS_VKONTAKTE_PHONE_END = ''                               # last 4 digits of user mobile phone
        
        ## Facebook
        
            OAUTH_TOKENS_FACEBOOK_CLIENT_ID = ''                                # application ID
            OAUTH_TOKENS_FACEBOOK_CLIENT_SECRET = ''                            # application secret key
            OAUTH_TOKENS_FACEBOOK_SCOPE = ['offline_access']                    # application scopes
            OAUTH_TOKENS_FACEBOOK_USERNAME = ''                                 # user login
            OAUTH_TOKENS_FACEBOOK_PASSWORD = ''                                 # user password
        
        # Settings
        
            OAUTH_TOKENS_HISTORY = True # to keep in DB expired access tokens
        
        # Dependencies
        
        * Django
        * oauth2 service depends on http://github.com/ryanhorn/tyoiOAuth2.git
        * requests (pip install requests)
Platform: UNKNOWN
Classifier: Development Status :: 4 - Beta
Classifier: Environment :: Web Environment
Classifier: Intended Audience :: Developers
Classifier: License :: OSI Approved :: BSD License
Classifier: Operating System :: OS Independent
Classifier: Programming Language :: Python
Classifier: Topic :: Software Development :: Libraries :: Python Modules
