Jwtverify()
not available
Usage
UNKNOWN = Jwtverify(
token,
secret,
issuer,
algorithm
)
Argument | Summary |
---|---|
token | Token to verify |
secret | Secret to use for verification |
issuer | Issuer to use for verification [optional] |
algorithm | Which algorithm to use, defaults to HMAC256 [optional] |
Calling
Supports named-parameter calling allowing you to use the function like:
Jwtverify( token=?, secret=?, issuer=?, algorithm=? );
Supports passing parameters as a structure using ArgumentCollection:
Jwtverify( ArgumentCollection={ token : ?, secret : ?, issuer : ?, algorithm : ? } );