JwtValidationContext

Provides the properties of a JWT after validation. When the "JwtValidationFilter" validates a JWT, or the "IdTokenValidationFilter" validates an id_token, it injects a copy of the JWT and its claims into this context.

Properties

The context is named jwtValidation, and is accessible at ${contexts.jwtValidation}. The context has the following properties:

"value": string

The value of the JWT. Cannot be null.

"claims": JWT claims set

A copy of the claims as a JwtClaimsSet.

"info": map

A copy of the claims as a map.

"jwt": JWT

A copy of the JWT.

Read a different version of :