OIDC JSON Web Key Set
curl --request GET \
--url https://api.studio.prisme.ai/oidc/jwksconst options = {method: 'GET'};
fetch('https://api.studio.prisme.ai/oidc/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{}
]
}OIDC
OIDC JSON Web Key Set
Public keys used to sign this instance’s ID tokens and JWT access tokens, in JWK Set format (RFC 7517). Fetch it from the jwks_uri advertised by the discovery document rather than from this path directly.
GET
/
oidc
/
jwks
OIDC JSON Web Key Set
curl --request GET \
--url https://api.studio.prisme.ai/oidc/jwksconst options = {method: 'GET'};
fetch('https://api.studio.prisme.ai/oidc/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.studio.prisme.ai/oidc/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{}
]
}Response
200 - application/json
Success Response
Was this page helpful?