-
-
Notifications
You must be signed in to change notification settings - Fork 390
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
feat(JWT): Customised token verification #3695
Conversation
Codecov ReportAll modified and coverable lines are covered by tests ✅
Additional details and impacted files@@ Coverage Diff @@
## main #3695 +/- ##
=======================================
Coverage 98.28% 98.29%
=======================================
Files 330 330
Lines 15041 15118 +77
Branches 2394 2401 +7
=======================================
+ Hits 14783 14860 +77
Misses 116 116
Partials 142 142 ☔ View full report in Codecov by Sentry. |
23c429e
to
b1d176d
Compare
b1d176d
to
1b784d4
Compare
Quality Gate passedIssues Measures |
Documentation preview will be available shortly at https://litestar-org.github.io/litestar-docs-preview/3695 |
Customise the automatic verification of JWTs.
aud
iss
iat
nbf
aud
verificationJWT backend changes
accepted_audiences
fieldaccepted_issuers
fieldrequire_claims
fieldverify_expiry
fieldverify_not_before
fieldstrict_audience
fieldJWT middleware changes
token_issuer
parameterrequire_claims
parameterverify_expiry
parameterverify_not_before
parameterstrict_audience
parameterToken changes
audience
parameter toToken.decode
issuer
parameter toToken.decode
require_claims
parameter toToken.decode
verify_exp
parameter toToken.decode
verify_nbf
parameter toToken.decode
strict_audience
parameter toToken.decode
decode_payload
method