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 e3d1d88 commit eba4abeCopy full SHA for eba4abe
README.md
@@ -41,6 +41,15 @@ JSON Web Signatures (JWS) are used to digitally sign a JSON encoded object and r
41
42
JSON Web Tokens (JWT) are a JWS with a set of reserved claims to be used in a standardized manner.
43
44
+#### JWT Reserved Claims
45
+
46
+Claim | Name | Format | Usage
47
+------|------|--------|------
48
+'exp' | Expiration | int | The time after which the token is invalid.
49
+'nbf' | Not Before | int | The time before which the token is invalid.
50
+'iss' | Issuer | str | The principal that issued the JWT.
51
+'aud' | Audience | str or list(str) | The recipient that the JWT is intended for.
52
+'iat' | Issued At | int | The time at which the JWT was issued.
53
54
## Algorithms
55
0 commit comments