test-jwt.io

This file contains information that can be plugged-into https://jwt.io in order to experiment with token-types currently used by the BLAST (ILP-over-HTTP) protocol in this implementaiton:

Headers

{
  "alg": "HS256",
  "typ": "JWT"
}

Payload

{
  "sub": "alice",
  "aud": "https://connie.example.com/",
  "iss": "https://alice.example.com/",
  "iat": 1556751813
}

Last updated