Paste a JWT token â the service decodes the header, payload and shows expiration times.
JSON Web Token (JWT) is a compact format for transferring claims between parties. A token consists of three Base64url-encoded parts separated by dots: Header, Payload, and Signature.
iss â Issuer: who issued the token;sub â Subject: who the token was issued to;aud â Audience: intended recipient;exp â Expiration Time: token expiry (Unix timestamp);nbf â Not Before: token is not valid before this time;iat â Issued At: time the token was issued.