Python
import requests url = "https://{FUSION HOST}/oauth2/certificate" response = requests.get(url) print(response.json())
"<string>"
Returns certificate which can be use to validate signature of JWT or SAML requests
OK
The response is of type string.
string
Was this page helpful?