---
name: oauth-discovery
description: Publish OAuth/OIDC discovery metadata
---

# Fix: oauthDiscovery

**Probe:** `/.well-known/openid-configuration` then `oauth-authorization-server` — need `issuer`, `authorization_endpoint`, `token_endpoint`.

```json
{
    "issuer": "https://example.com",
    "authorization_endpoint": "https://example.com/oauth/authorize",
    "token_endpoint": "https://example.com/oauth/token"
}
```

Specs: RFC 8414, OpenID Connect Discovery
