Forrest logo
back to context overview

jwt

List of commands for jwt:

  • jwt:tldr:7c914 jwt: Decode a JWT as a JSON string.
    $ jwt decode -j ${jwt_string}
    try on your machine
    explain this command
  • jwt:tldr:9c42b jwt: Encode a JSON string to a JWT.
    $ jwt encode --alg ${HS256} --secret ${1234567890} '${json_string}'
    try on your machine
    explain this command
  • jwt:tldr:a1995 jwt: Encode key pair payload to JWT.
    $ jwt encode --alg ${HS256} --secret ${1234567890} -P key=value
    try on your machine
    explain this command
  • jwt:tldr:fba58 jwt: Decode a JWT.
    $ jwt decode ${jwt_string}
    try on your machine
    explain this command
back to context overview