summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2017-12-19 15:18:48 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2017-12-19 15:18:48 +0100
commitef8a3b47305b23b278310c1f21106c677a748434 (patch)
tree5440d7a11a9bb51d7eb04a500e4b43bec0ec9dcc /oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
parent9b95e4e8f094d78abe577203ad1ef53aecfdb270 (diff)
downloadoauthlib-ef8a3b47305b23b278310c1f21106c677a748434.tar.gz
Added default supported_token_types for Mobile
Diffstat (limited to 'oauthlib/oauth2/rfc6749/endpoints/pre_configured.py')
-rw-r--r--oauthlib/oauth2/rfc6749/endpoints/pre_configured.py3
1 files changed, 2 insertions, 1 deletions
diff --git a/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py b/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
index f1dfead..378339a 100644
--- a/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
+++ b/oauthlib/oauth2/rfc6749/endpoints/pre_configured.py
@@ -162,7 +162,8 @@ class MobileApplicationServer(AuthorizationEndpoint, IntrospectEndpoint,
token_types={'Bearer': bearer})
RevocationEndpoint.__init__(self, request_validator,
supported_token_types=['access_token'])
- IntrospectEndpoint.__init__(self, request_validator)
+ IntrospectEndpoint.__init__(self, request_validator,
+ supported_token_types=['access_token'])
class LegacyApplicationServer(TokenEndpoint, IntrospectEndpoint,