...
Code Block |
---|
JwtValidation validateJwt( string openIdServer, string token, map <string, any> claimsToValidate, //Optional string algorithm //Optional) |
Parameters
Parameter | Description |
---|---|
openIdServer | The destination URL of the token to be verified. |
token | The value of the token. |
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 error message on validation failure. Null on validation success. |
Info | ||
---|---|---|
| ||
Example of the validateJwt function with claims and algorithm optional values populated.
|
...