Well Known Oauth
curl --request GET \
--url https://api.agentpowers.ai/.well-known/oauth-authorization-serverimport requests
url = "https://api.agentpowers.ai/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/oauth-authorization-server', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
]
}oauth
Well Known Oauth
RFC 8414 OAuth Authorization Server Metadata.
GET
/
.well-known
/
oauth-authorization-server
Well Known Oauth
curl --request GET \
--url https://api.agentpowers.ai/.well-known/oauth-authorization-serverimport requests
url = "https://api.agentpowers.ai/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text)const options = {method: 'GET'};
fetch('https://api.agentpowers.ai/.well-known/oauth-authorization-server', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));{
"issuer": "<string>",
"authorization_endpoint": "<string>",
"token_endpoint": "<string>",
"registration_endpoint": "<string>",
"response_types_supported": [
"<string>"
],
"grant_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
]
}Response
200 - application/json
Successful Response
Was this page helpful?