JWT Okuyucu

Bir JSON Web Token'ın içinde ne var. İmza hiç doğrulanmaz, anahtar hiç istenmez.

An example

Not your input

Token
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIn0...
Header then payload
{"alg":"HS256","typ":"JWT"} then {"sub":"1234567890"}

Reading is not verifying. The token is decoded here, never checked against a secret, and nothing leaves this server.

Three blocks separated by dots. A leading Bearer is fine, it is removed. What you paste is read in memory on this server and is neither stored nor written to any log; even so, a token that is still live is worth replacing after it has been pasted anywhere.