summaryrefslogtreecommitdiff
path: root/oauthlib/common.py
diff options
context:
space:
mode:
authorMassimiliano Pippi <mpippi@gmail.com>2015-07-20 11:38:10 +0200
committerMassimiliano Pippi <mpippi@gmail.com>2015-07-20 11:38:10 +0200
commit1ee0003814a5f89090f59802cbcccdb1e9f0938d (patch)
tree51b878a8f43168e44bf0cc991c19ed90d931c7e4 /oauthlib/common.py
parentcb74fd7fd2b2d4c899b5c001539912cf1c852858 (diff)
downloadoauthlib-1ee0003814a5f89090f59802cbcccdb1e9f0938d.tar.gz
add token_type_hint to the list of default Request params
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r--oauthlib/common.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py
index 41ebc11..df8b8d9 100644
--- a/oauthlib/common.py
+++ b/oauthlib/common.py
@@ -397,6 +397,7 @@ class Request(object):
"state": None,
"token": None,
"user": None,
+ "token_type_hint": None,
}
self._params.update(dict(urldecode(self.uri_query)))
self._params.update(dict(self.decoded_body or []))