Check out our upcoming events and meetups! View events →
OAuth 2.0 Authorization Server Metadata (RFC 8414)
import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.wellKnown.retrieveAuthorizationServerMetadata();
console.log(response.authorization_endpoint);{
"issuer": "<string>",
"token_endpoint": "<string>",
"introspection_endpoint": "<string>",
"jwks_uri": "<string>",
"registration_endpoint": "<string>",
"authorization_endpoint": "<string>",
"grant_types_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"scopes_supported": [
"admin"
]
}Documentation Index
Fetch the complete documentation index at: https://developers.telnyx.com/llms.txt
Use this file to discover all available pages before exploring further.
Authorization server metadata
Authorization server issuer URL
Token endpoint URL
Token introspection endpoint URL
JWK Set endpoint URL
Dynamic client registration endpoint URL
Authorization endpoint URL
Supported grant types
Supported PKCE code challenge methods
Supported response types
Supported token endpoint authentication methods
Supported OAuth scopes
["admin"]Was this page helpful?
import Telnyx from 'telnyx';
const client = new Telnyx();
const response = await client.wellKnown.retrieveAuthorizationServerMetadata();
console.log(response.authorization_endpoint);{
"issuer": "<string>",
"token_endpoint": "<string>",
"introspection_endpoint": "<string>",
"jwks_uri": "<string>",
"registration_endpoint": "<string>",
"authorization_endpoint": "<string>",
"grant_types_supported": [
"<string>"
],
"code_challenge_methods_supported": [
"<string>"
],
"response_types_supported": [
"<string>"
],
"token_endpoint_auth_methods_supported": [
"<string>"
],
"scopes_supported": [
"admin"
]
}