You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Currently, the DefaultJWTClaimsVerifier checks whether a required claim exists or not. However, it does not check if the claim has a proper value.
It would be a nice option if we could also specify some validation rules for claims, such as:
isBoolean,
isBoolean().isTrue()
isString()
isString().notEmpty()
isString().matches()
isNumber()
isNumer().min().max(),
etc.
The text was updated successfully, but these errors were encountered:
Currently, the DefaultJWTClaimsVerifier checks whether a required claim exists or not. However, it does not check if the claim has a proper value.
It would be a nice option if we could also specify some validation rules for claims, such as:
The text was updated successfully, but these errors were encountered: