diff options
author | Hsiaoming Yang <me@lepture.com> | 2015-11-13 09:20:05 +0800 |
---|---|---|
committer | Hsiaoming Yang <me@lepture.com> | 2015-11-13 09:20:05 +0800 |
commit | 192f0f963cfaf90668aca983db04dce11d639b47 (patch) | |
tree | b4feecebc359ef19345ec20f66c769167899410c /oauthlib/common.py | |
parent | 7ba8c59124984d71123a5dda8cce3ed18cf4c96f (diff) | |
download | oauthlib-192f0f963cfaf90668aca983db04dce11d639b47.tar.gz |
Add request token for OAuth 1
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index 9071aa8..db07f08 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -393,6 +393,7 @@ class Request(object): "grant_type": None, "redirect_uri": None, "refresh_token": None, + "request_token": None, "response_type": None, "scope": None, "scopes": None, |