Verify JWT Token with JWKs
Verify a JWT Token using JWKs
What it does
- Takes 2 inputs and produces 3 outputs.
Inputs
| Name | Type | Description |
|---|---|---|
| JWT Token | String | The JWT token to decode and verify |
| JWKs | Object | The JSON containing the JWKs |
Outputs
| Name | Type | Description |
|---|---|---|
| Verified | Boolean | Returns true if the token has been verified |
| Data | Object | The contents of the JWT Token |
| Error | String | Populated if there is an error |