import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.oauth.retrieveJwks();
console.log(response.keys);{
"keys": [
{
"kty": "<string>",
"use": "<string>",
"alg": "<string>",
"kid": "<string>"
}
]
}Retrieve the JSON Web Key Set for token verification
import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.oauth.retrieveJwks();
console.log(response.keys);{
"keys": [
{
"kty": "<string>",
"use": "<string>",
"alg": "<string>",
"kid": "<string>"
}
]
}Was this page helpful?