Openapi-well knownOauth protected resource
OAuth protected-resource metadata (RFC 9728)
Advertise the authorization server that protects this resource, the scopes it supports, and the bearer-token method used. OAuth-aware clients use this to self-configure.
GET
/.well-known/oauth-protected-resourceAdvertise the authorization server that protects this resource, the scopes it supports, and the bearer-token method used. OAuth-aware clients use this to self-configure.
Response Body
application/json
curl -X GET "https://example.com/.well-known/oauth-protected-resource"{
"authorization_servers": [
"string"
],
"bearer_methods_supported": [
"string"
],
"scopes_supported": [
"string"
]
}