summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 11:00:15 +0100
committerJonathan Huot <jonathan.huot@thomsonreuters.com>2018-12-13 11:00:15 +0100
commitd0640038a84f60b37864cf585fd764f9ee34b1c4 (patch)
tree6b2dd222ee6aad751a75c0a1d9fc7f02ff2e0ce6
parent7601696b6570f6f798b1dd72e37ffaeabf49a81a (diff)
downloadoauthlib-d0640038a84f60b37864cf585fd764f9ee34b1c4.tar.gz
challenge can have a length of 128 when using maximum size of verifier+plain.
-rw-r--r--docs/oauth2/server.rst2
1 files changed, 1 insertions, 1 deletions
diff --git a/docs/oauth2/server.rst b/docs/oauth2/server.rst
index eca363b..6c065c5 100644
--- a/docs/oauth2/server.rst
+++ b/docs/oauth2/server.rst
@@ -253,7 +253,7 @@ the token.
.. code-block:: python
- challenge = django.db.models.CharField(max_length=100)
+ challenge = django.db.models.CharField(max_length=128)
challenge_method = django.db.models.CharField(max_length=6)