Parameter | Description |
---|---|
Payload | Data to encode. We recommend to format it according to OpenID standards. |
Subject | Identifies the subject of the JWT. |
Issuer | Identifies principal that issued the JWT. |
Audience | Identifies the recipients that the JWT is intended. For example: admin.your_domain.com |
Expires in | Identifies the expiration time on and after which the JWT must not be accepted for processing. |
Property | Type | Description |
---|---|---|
token | String | A JSON web token string. |
Parameter | Description |
---|---|
Token (required) | JSON web token string that will be decoded. |
Property | Type | Description |
---|---|---|
payload | object | The decoded and valid JSON web token content |
Parameter | Description |
---|---|
Token (required) | JSON web token string that will be verified. |
Issuer | The issuer of the JWT that will be verified. |
Audience | The recipient audience of the JWT is intended that will be verified. |
Property | Type | Description |
---|---|---|
valid | Boolean | Returns true or false depending on whether or not the JWT has a valid signature. |
cause | String | If the valid property is false a message is displayed. |
payload | Object | The decoded and valid JSON web token content. |