Cargando...
Decodifica y depura tokens JWT
{
"alg": "HS256",
"typ": "JWT"
}{
"sub": "usr_9081123",
"name": "Ada Lovelace",
"email": "ada@example.com",
"role": "admin",
"iat": 1700000000,
"exp": 2000000000
}Identifies the expiration time on or after which the JWT MUST NOT be accepted.
Identifies the time at which the JWT was issued.
Identifies the principal that is the subject of the JWT (e.g. User ID).
Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c3JfOTA4MTEyMyIsIm5hbWUiOiJBZGEgTG92ZWxhY2UiLCJlbWFpbCI6ImFkYUBleGFtcGxlLmNvbSIsInJvbGUiOiJhZG1pbiIsImlhdCI6MTcwMDAwMDAwMCwiZXhwIjoyMDAwMDAwMDAwfQ.k0y58_f7K3sWjM-z99yP2_tqX-4zG7aB2xX3wV9j98c
curl -X GET "https://api.example.com/v1/protected" \ -H "Authorization: Bearer eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiJ1c3JfOTA4MTEyMyIsIm5hbWUiOiJBZGEgTG92ZWxhY2UiLCJlbWFpbCI6ImFkYUBleGFtcGxlLmNvbSIsInJvbGUiOiJhZG1pbiIsImlhdCI6MTcwMDAwMDAwMCwiZXhwIjoyMDAwMDAwMDAwfQ.k0y58_f7K3sWjM-z99yP2_tqX-4zG7aB2xX3wV9j98c"