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
Bearer authentication header of the form Bearer <token>, where <token> is your auth token.
Bearer <token>
<token>
JSON Web Key Set
Show child attributes
Key type
Key use
Algorithm
Key ID
Was this page helpful?