...
Parameter | Description | |||||||
---|---|---|---|---|---|---|---|---|
openIdServer | This is the URL for the JWKS server.
| |||||||
token | This refers to the JWT (Json Web Token) that needs to be validated. | |||||||
claimsToValidate | An optional map field to declare the claims as well as the corresponding value to validate against the token. | |||||||
algorithm | An optional field to verify the signing algorithm used by the token. The possible values could be RSA256, RSA384, RSA512, ECDSA256, ECDSA384, ECDSA512. By default, the APL function uses RSA256. | |||||||
Returns | An JwtValidationResult UDR which consists of error message on validation failure and decoded payloads. The error message will be Null on validation success. |
...