You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
It would be nice if httpbin could decode the JWT that was passed via the "Authentication: Bearer ..." header and show it as JSON.
To avoid confusion, this is different than GET /bearer under "Auth", where one sets his own header.
It should rather be GET /bearer-token-as-json or similar under "Request Inspection".
Decoding the JWT is pretty simple, here is a shell script that I use so far:
It would be nice if httpbin could decode the JWT that was passed via the "Authentication: Bearer ..." header and show it as JSON.
To avoid confusion, this is different than
GET /bearer
under "Auth", where one sets his own header.It should rather be
GET /bearer-token-as-json
or similar under "Request Inspection".Decoding the JWT is pretty simple, here is a shell script that I use so far:
(the last two lines are just a suggestion that decoding the Unix timestamp would be very convenient as well)
The text was updated successfully, but these errors were encountered: