Get inference JWT verification keys
curl --request GET \
--url https://harness.example.com/gateway/jwksconst options = {method: 'GET'};
fetch('https://harness.example.com/gateway/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/gateway/jwks"
response = requests.get(url)
print(response.text)Gateway
Get inference JWT verification keys
GET
/
gateway
/
jwks
Get inference JWT verification keys
curl --request GET \
--url https://harness.example.com/gateway/jwksconst options = {method: 'GET'};
fetch('https://harness.example.com/gateway/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://harness.example.com/gateway/jwks"
response = requests.get(url)
print(response.text)Response
Active and retained gateway verification keys
