Documentation
OpenID Configuration
Discover authorization, token, JWKS, and related endpoints.
GET/.well-known/openid-configuration
Purpose
Returns OIDC discovery metadata for the Radiant Auth issuer. Prefer this over hard-coding endpoint paths.
URLs
- Convenience:
https://auth.rdnt.live/.well-known/openid-configuration— HTTP 302 to the canonical document - Canonical:
https://auth.rdnt.live/api/auth/.well-known/openid-configuration
Tip
Authorization server metadata is also available at
https://auth.rdnt.live/api/auth/.well-known/oauth-authorization-server.Notable fields
issuerauthorization_endpointtoken_endpointuserinfo_endpointjwks_urirevocation_endpointintrospection_endpointend_session_endpointcode_challenge_methods_supported→["S256"]
Example
discovery.sh
curl -L "https://auth.rdnt.live/.well-known/openid-configuration"
# or directly:
curl "https://auth.rdnt.live/api/auth/.well-known/openid-configuration"