Build OAuth 2.0 authorization URLs and understand each flow. Supports Authorization Code , Client Credentials , Device Code , and Implicit grant types. Also decodes JWT access tokens.
https://authorization-server.example.com/authorize?response_type=code
curl -X POST "https://authorization-server.example.com/token" \ -H "Content-Type: application/x-www-form-urlencoded" \ -d "grant_type=authorization_code" \ -d "code=AUTH_CODE_FROM_REDIRECT" \ -d "redirect_uri=https://your-app.example.com/callback" \ -d "client_id=YOUR_CLIENT_ID" \ -d "client_secret=YOUR_CLIENT_SECRET"
marduc812
2026