oauth/settings/client_settings.py
changeset 1 5f50937893ac
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/oauth/settings/client_settings.py	Tue Feb 16 15:43:00 2016 +0100
@@ -0,0 +1,15 @@
+
+class ClientSettings(object):
+    
+    CLIENT_ID = 'UxJQTxKRWXME4BORSAicA364ux5hRk3xaARR6Ft9'
+    CLIENT_SECRET = 'D1bWhjNrWWygfBIQ6C8yXfUmagXlQplVd4cVAF8y5CQDc3IQkE'
+    
+    # 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': 'email'}
+    
+    # Renkan config
+    CREATE_RENKAN_URL = 'http://127.0.0.1:8001'
\ No newline at end of file