oauth/settings/client_settings.py.tmpl
author durandn
Tue, 16 Feb 2016 15:46:00 +0100
changeset 2 d5c583f9a035
parent 1 5f50937893ac
child 5 4407b131a70e
permissions -rw-r--r--
fixed commited oauth settings + edited tmpls and readme


class ClientSettings(object):
    
    CLIENT_ID = ''
    CLIENT_SECRET = ''
    
    # Oauth server config
    BASE_URL = 'http://127.0.0.1:5000/api/'
    REQUEST_TOKEN_URL = None
    ACCESS_TOKEN_URL = 'http://127.0.0.1:5000/oauth/token'
    AUTHORIZE_URL = 'http://127.0.0.1:5000/oauth/authorize'
    REQUEST_TOKEN_PARAMS = {'scope': ''}
    
    # Renkan config
    CREATE_RENKAN_URL = ''