JavaScript
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
JSON Web Key Set
Show child attributes
Was this page helpful?