Skip to main content
GET
/
.well-known
/
oauth-protected-resource
Get OAuth Protected Resource Metadata
curl --request GET \
  --url https://api.influship.com/.well-known/oauth-protected-resource
const 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