diff options
author | Joel Stevenson <jstevenson@bepress.com> | 2016-04-15 17:43:46 -0700 |
---|---|---|
committer | Joel Stevenson <jstevenson@bepress.com> | 2016-04-15 17:43:46 -0700 |
commit | 29597b9df3046611f037059cf392e48090bc796f (patch) | |
tree | abf912fcec2ca50ff04598da19fdf9a094a167d0 /oauthlib/common.py | |
parent | 77c7774589e7e2348947ba3fb6a070795bba1819 (diff) | |
download | oauthlib-29597b9df3046611f037059cf392e48090bc796f.tar.gz |
First pass attempt at updating openid_connect branch
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index e0e80c8..8b5f92b 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -401,6 +401,17 @@ class Request(object): "token": None, "user": None, "token_type_hint": None, + + "response_mode": None, + "nonce": None, + "display": None, + "prompt": None, + "claims": None, + "max_age": None, + "ui_locales": None, + "id_token_hint": None, + "login_hint": None, + "acr_values": None } self._params.update(dict(urldecode(self.uri_query))) self._params.update(dict(self.decoded_body or [])) |