You are not logged in.
OAuth flow redirects to the identity provider for secure authentication, then returns with a JWT token:
For demo purposes, login with the test admin key (bypasses OAuth flow and grants admin privileges):
Logged in as: User (user@example.com)
User ID: user-id
Authentication Provider: unknown
Tenant ID: N/A
Roles: []
The JWT token is automatically managed by the SDK and stored in localStorage. The SDK also provides built-in token validation and management utilities:
Not logged in
Browser-side JWT decoding shows the token's claims and metadata:
Not authenticated
These utilities validate token format, check expiration, and provide helper methods for token lifecycle management:
Not authenticated
Test different API endpoints with varying authentication requirements:
Health check endpoint - no authentication required
User profile via SDK client (requires valid JWT)
User profile via direct API call (requires valid JWT)
Admin dashboard via SDK (requires admin role)
Admin logs via SDK (requires admin role)
Data query via SDK (public-content zone)