Metadata-Version: 1.1
Name: django-oauth-tokens
Version: 0.1.8
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 = ...
            OAUTH_TOKENS_VKONTAKTE_CLIENT_SECRET = ...
            OAUTH_TOKENS_VKONTAKTE_SCOPE = ['ads,wall,photos,friends,stats'] # array of strings
            OAUTH_TOKENS_VKONTAKTE_USERNAME = ...
            OAUTH_TOKENS_VKONTAKTE_PASSWORD = ...
            OAUTH_TOKENS_VKONTAKTE_PHONE_END = ... # last 4 digits
        
        ## Facebook
        
            OAUTH_TOKENS_FACEBOOK_CLIENT_ID = ...
            OAUTH_TOKENS_FACEBOOK_CLIENT_SECRET = ...
            OAUTH_TOKENS_FACEBOOK_SCOPE = ['offline_access'] # array of strings
            OAUTH_TOKENS_FACEBOOK_USERNAME = ...
            OAUTH_TOKENS_FACEBOOK_PASSWORD = ...
        
        # Settings
        
            OAUTH_TOKENS_HISTORY = True # to keep in DB access tokens expired
        
        # 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
