OAuth authorization server metadata
OAuth authorization server metadata
GET
/
.well-known
/
oauth-authorization-server
OAuth authorization server metadata
curl --request GET \
--url https://api.vantr.ai/.well-known/oauth-authorization-serverconst options = {method: 'GET'};
fetch('https://api.vantr.ai/.well-known/oauth-authorization-server', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vantr.ai/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text)Response
200
RFC 8414 metadata document.
Was this page helpful?
⌘I
OAuth authorization server metadata
curl --request GET \
--url https://api.vantr.ai/.well-known/oauth-authorization-serverconst options = {method: 'GET'};
fetch('https://api.vantr.ai/.well-known/oauth-authorization-server', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.vantr.ai/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text)