JWT Token Test
Test OAuth 2.0 JWT token generation and refresh functionality
Client Selection & Credentials
Token Response
Token response will appear here...
OAuth 2.0 Quick Reference
Client Credentials Flow
- Used for server-to-server authentication
- No user context (subject)
- Scopes are limited to client's allowed scopes
- Refresh token optional (depends on client settings)
Token Endpoints
POST /oauth/token- Get tokensPOST /oauth/token/revoke- Revoke tokens- Content-Type:
application/x-www-form-urlencoded
JWT Structure
- Header: Algorithm and token type
- Payload: Claims (client_id, scopes, exp, etc.)
- Signature: HMAC-SHA256 verification