summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r--oauthlib/common.py11
1 files changed, 9 insertions, 2 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py
index 27c97a5..f20621b 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -382,13 +382,20 @@ class Request(object):
self.oauth_params = []
self._params = {
+ "access_token": None,
+ "client": None,
"client_id": None,
+ "code": None,
+ "extra_credentials": None,
"grant_type": None,
"redirect_uri": None,
+ "refresh_token": None,
"response_type": None,
+ "scope": None,
+ "scopes": None,
"state": None,
- "refresh_token": None,
- "access_token": None,
+ "token": None,
+ "user": None,
}
self._params.update(dict(urldecode(self.uri_query)))
self._params.update(dict(self.decoded_body or []))