summaryrefslogtreecommitdiff
path: root/oauthlib/oauth2/rfc6749/request_validator.py
diff options
context:
space:
mode:
authorJoel Stevenson <jstevenson@bepress.com>2016-05-02 11:21:11 -0700
committerJoel Stevenson <jstevenson@bepress.com>2016-05-02 11:21:11 -0700
commit071ecaf8221fdc8cc2793238f067c78a26e2763d (patch)
treeadf38c9c3dad69d84b43a845011ac4a84aaf9f6f /oauthlib/oauth2/rfc6749/request_validator.py
parentc9393ce3fb370af303afe741ce61ee1f73a17833 (diff)
downloadoauthlib-071ecaf8221fdc8cc2793238f067c78a26e2763d.tar.gz
Pairing with the previous commit, revert the change related to response_type in AuthorizationEndpoint so that they must appear in the order specified in the spec. Just keeps the code clean and simple this way.
Diffstat (limited to 'oauthlib/oauth2/rfc6749/request_validator.py')
-rw-r--r--oauthlib/oauth2/rfc6749/request_validator.py3
1 files changed, 3 insertions, 0 deletions
diff --git a/oauthlib/oauth2/rfc6749/request_validator.py b/oauthlib/oauth2/rfc6749/request_validator.py
index 935744f..99a846e 100644
--- a/oauthlib/oauth2/rfc6749/request_validator.py
+++ b/oauthlib/oauth2/rfc6749/request_validator.py
@@ -283,6 +283,9 @@ class RequestValidator(object):
Subclasses should implement the construction, signing and optional encryption of the
ID Token as described in the OpenID Connect spec.
+ For implicit and hybrid workflows your subclass can find the nonce on the
+ request.
+
:param token: A Bearer token dict
:param token_handler: the token handler (BearerToken class)
:param request: the HTTP Request (oauthlib.common.Request)