A t_token
record contains the decoded parts of a JSON Web Token.
Syntax
type t_token is record ( header varchar2(32767), payload varchar2(32767), signature varchar2(32767) );
Parameters
Table 21-1 T_TOKEN Parameters
Parameter | Description |
---|---|
|
The Javascript Object Signing and Encryption (JOSE) header contains cryptographic parameters. |
|
The claims which the token asserts. |
|
The signature of header and payload. |
Parent topic: APEX_JWT