Tested tool guide
Tested browser tools
Checked August 16, 2026
What OAuth Token Inspector does, with a checked example
OAuth Token Inspector lets you paste an OAuth or OpenID Connect token value and examine any readable token structure without sending the credential away from the browser. For a JWS-form JWT, it separates the compact header, payload, and signature segment, then decodes the base64url-encoded JSON so claims such as issuer, subject, audience, expiry, issued-at time, and scope can be reviewed. Access tokens and refresh tokens may instead be opaque identifiers, so the tool cannot recover server-side claims absent from the pasted text. Readable output proves only that content was decoded, not that the token is authentic or currently valid.
Worked example
A concrete input and expected output from the current implementation.
Input
eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJzdWIiOiIxMjM0NTY3ODkwIiwibmFtZSI6IkpvaG4gRG9lIiwiaWF0IjoxNTE2MjM5MDIyfQ.SflKxwRJSMeKKF2QT4fwpMeJf36POk6yJV_adQssw5c
->
Expected output
Header: {"alg":"HS256","typ":"JWT"}; payload: {"sub":"1234567890","name":"John Doe","iat":1516239022}; signature segment present. The first two period-delimited segments are base64url encodings of those JSON objects. The final segment is signature material, so it adds no claims and does not by itself establish trust.