Skip to content

OpenID Connect

  • OpenID Connect Core 1.0
  • OpenID Connect Discovery 1.0
Flow IDNameDescription
oidc_authorization_codeAuthorization CodeOIDC authentication with ID token
oidc_hybridHybrid FlowCombined code + token response (Section 3.3)
oidc_implicitImplicit (Legacy)Browser-based OIDC flow
oidc_userinfoUserInfoClaims retrieval from the UserInfo endpoint
oidc_discoveryDiscoveryOpenID Provider metadata and JWKS resolution
interaction-codeInteraction CodeInteractive authorization with PKCE
  • Login with OpenID Connect — Full OIDC authentication flow
  • ID Token Deep Dive — Token decoding and claims inspection
  • Discovery Document Exploration — Provider metadata resolution
PathMethodsPurpose
/oidc/.well-known/openid-configurationGETDiscovery document
/oidc/.well-known/jwks.jsonGETJSON Web Key Set
/oidc/jwksGETJWKS alias
/oidc/authorizeGET, POSTAuthorization endpoint
/oidc/tokenPOSTToken endpoint (returns ID token)
/oidc/userinfoGET, POSTUserInfo endpoint
  • ID token claims: iss, sub, aud, exp, iat, nonce, at_hash
  • Discovery fields: issuer, authorization_endpoint, token_endpoint, jwks_uri
  • JWKS: key type, algorithm, key ID alignment with token header
  • UserInfo: scope-dependent claims, subject consistency with ID token
  • Hybrid: multiple response types in a single authorization request