JWT

JSON Web Token (JWT) is a compact, URL-safe means of representing claims to be transferred between two parties. This Integration can be used to Generate New JWT Tokens, Encode and Decode Existing Ones.

Authentication & Identity Management · JWT Token Generator

Configuration parameters

  • url — Your server URL (required)
  • key — Secret Key (required)
  • algorithm — Algorithm
  • iss — Issuer
  • aud — Audience
  • jti — Token ID
  • sub — Subject
  • scp — Scope
  • iat — Issued At
  • exp — Expiration Time
  • nbf — Not Before
  • additionalClaims — Additional Claims
  • tokenTimeout — Token Timeout
  • insecure — Trust any certificate (not secure)
  • proxy — Use system proxy settings

Commands (3)

  • jwt-decode-token

    A command to decode JWT tokens

  • jwt-generate-access-token

    Generates a JWT authorization token with an optional scope and queries the API for an access token and then returns the received API access token

  • jwt-generate-authentication-payload

    Generates a JWT authorization request payload by encoding the provided claims.