OAuth 2.0 Authorization Server Metadata (RFC 8414)
import requests
url = "https://{FUSION HOST}/api/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text){}OAuth 2.0 Authorization Server Metadata (RFC 8414)
Get authorization server metadata. Returns metadata proxied from the external identity provider with a modified registration endpoint. Implements RFC 8414.
GET
/
.well-known
/
oauth-authorization-server
OAuth 2.0 Authorization Server Metadata (RFC 8414)
import requests
url = "https://{FUSION HOST}/api/.well-known/oauth-authorization-server"
response = requests.get(url)
print(response.text){}Response
200 - application/json
OK
Was this page helpful?
⌘I