Get OAuth Protected Resource Metadata
curl --request GET \
--url https://api.influship.com/.well-known/oauth-protected-resourceconst options = {method: 'GET'};
fetch('https://api.influship.com/.well-known/oauth-protected-resource', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.influship.com/.well-known/oauth-protected-resource"
response = requests.get(url)
print(response.text)OAuth
Get OAuth Protected Resource Metadata
OAuth 2.0 protected resource metadata for MCP and partner clients.
GET
/
.well-known
/
oauth-protected-resource
Get OAuth Protected Resource Metadata
curl --request GET \
--url https://api.influship.com/.well-known/oauth-protected-resourceconst options = {method: 'GET'};
fetch('https://api.influship.com/.well-known/oauth-protected-resource', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.influship.com/.well-known/oauth-protected-resource"
response = requests.get(url)
print(response.text)Response
200
Successful response