Livesecurityshipped v1.0.0
OAuth2 Token Inspector
Understand and document OAuth2 implementations. Paste token responses, authorization URLs, or cURL commands to identify the grant type (authorization code, client credentials, PKCE, device flow). Visualizes the token lifecycle including access token expiry, refresh token rotation, and scope hierarchy.
oauth2tokenauthapiflow-visualization
Authorization URL — Step 1: redirect user to authorize
Parameters
response_typeWhat's expected back: code, token, id_token
codeclient_idPublic identifier of the app
YOUR_CLIENT_IDredirect_uriWhere the auth server sends the user back
https://app.example.com/callbackscopePermissions requested
openid profile emailstateCSRF protection token
xyz123code_challengePKCE challenge
abccode_challenge_methodS256 (recommended) or plain
S256Security warnings
⚠ OIDC flow missing nonce — replay attack risk
🔒 Recognized stages: auth URL, redirect callback, token request/response. Never paste real production tokens.