CreateJWT

JSON Web Token (JWT), pronounced "jot", is an open standard that defines a compact and self-contained way for securely transmitting information between parties as a JSON object.

Properties

Secret Key

The secret key as a List or Base64 to encode the payload with.

Payload

The payload to include in the token. It must be a valid JSON string.

Algorithm

The algorithm to use in the encoding.

Introduction to JSON Web Tokens