Oauth Metadata
GET
/api/v1/oauth/.well-known/oauth-authorization-server
const url = 'https://example.com/api/v1/oauth/.well-known/oauth-authorization-server';const options = {method: 'GET'};
try { const response = await fetch(url, options); const data = await response.json(); console.log(data);} catch (error) { console.error(error);}curl --request GET \ --url https://example.com/api/v1/oauth/.well-known/oauth-authorization-serverResponses
Section titled “Responses”Successful Response
Media typeapplication/json
Examplegenerated
example