diff options
author | Jonathan Huot <JonathanHuot@users.noreply.github.com> | 2018-12-16 18:57:17 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-12-16 18:57:17 +0100 |
commit | 8de1e52fabdd9c3738a012bb88e2234d1bd06255 (patch) | |
tree | ecd00a27c357078f40279afcc133ea122f4d0c24 /oauthlib/common.py | |
parent | a73dcbdef98ade5750659a3e0ef40d107f3222a2 (diff) | |
parent | 1c55f05aaab476e257ecdfa096784d2eae0e4de1 (diff) | |
download | oauthlib-8de1e52fabdd9c3738a012bb88e2234d1bd06255.tar.gz |
Merge pull request #617 from oauthlib/601-pkce-support
Initial OAuth2.0/PKCE Provider support
Diffstat (limited to 'oauthlib/common.py')
-rw-r--r-- | oauthlib/common.py | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/oauthlib/common.py b/oauthlib/common.py index bd6ec56..970d7a5 100644 --- a/oauthlib/common.py +++ b/oauthlib/common.py @@ -397,6 +397,9 @@ class Request(object): "client_id": None, "client_secret": None, "code": None, + "code_challenge": None, + "code_challenge_method": None, + "code_verifier": None, "extra_credentials": None, "grant_type": None, "redirect_uri": None, |