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

  • issuer
  • authorization_endpoint
  • token_endpoint
  • userinfo_endpoint
  • jwks_uri
  • revocation_endpoint
  • introspection_endpoint
  • end_session_endpoint
  • code_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"