Jwtdecode()

not available

Usage

UNKNOWN = Jwtdecode( token, deserialize )
Argument Summary
token Token to decode
deserialize Boolean. Defaults to false. Set to true to automatically deserialize complex data in claims. [optional]

Calling

Supports named-parameter calling allowing you to use the function like:

Jwtdecode(
   token=?, 
   deserialize=?
);

Supports passing parameters as a structure using ArgumentCollection:

Jwtdecode( ArgumentCollection={
   token : ?, 
   deserialize : ?
} );