Private
Public Access
1
0

added rowingcoachexport API support

This commit is contained in:
Sander Roosendaal
2017-09-22 11:13:27 +02:00
parent 0fa2012d78
commit 6ee13e5374
2 changed files with 7 additions and 0 deletions

View File

@@ -126,6 +126,10 @@
expires,
use the refresh token to refresh it.</p>
<p>The redirect URI for user authentication has to be <i>https</i>.
Developers of iOS or Android apps should contact me directly if
this doesn't work for them. I can add exceptions.</p>
<p>The POST call must have content-type: <i>x-www-form-urlencoded</i>.
I set it this way to support the handy testing utility mentioned
belower. However,

View File

@@ -324,6 +324,9 @@ GMAPIKEY = CFG['gmapikey']
OAUTH2_PROVIDER = {
# this is the list of available scopes
'SCOPES': {'read': 'Read scope', 'write': 'Write scope', 'groups': 'Access to your groups'},
'ALLOWED_REDIRECT_URI_SCHEMES': ["http",
"https",
"rowingcoachexport"]
# 'OAUTH2_BACKEND_CLASS': 'oauth2_provider.oauth2_backends.JSONOAuthLibCore'
}