We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent c8e1b13 commit c2629f6Copy full SHA for c2629f6
CHANGELOG.rst
@@ -17,13 +17,17 @@ Changed
17
18
Before:
19
20
- .. code-block:: python
21
- jwt.encode({"payload":"abc"}, key=None, algorithm=None)
+ .. code-block:: pycon
+
22
+ >>> import jwt
23
+ >>> jwt.encode({"payload": "abc"}, key=None, algorithm=None)
24
25
After:
26
- jwt.encode({"payload":"abc"}, key=None, algorithm='none')
27
28
29
30
+ >>> jwt.encode({"payload": "abc"}, key=None, algorithm="none")
31
32
- Added validation for 'sub' (subject) and 'jti' (JWT ID) claims in tokens
33
0 commit comments