JSON Web Key Set (RFC 7517)
curl --request GET \
--url https://prod-auth.tktchurch.com/oauth/jwksimport Foundation
let url = URL(string: "https://prod-auth.tktchurch.com/oauth/jwks")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))const options = {method: 'GET'};
fetch('https://prod-auth.tktchurch.com/oauth/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://prod-auth.tktchurch.com/oauth/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{
"kty": "EC",
"crv": "P-256",
"kid": "2026-09-22",
"use": "sig",
"alg": "ES256",
"x": "f83OJ3D2xF1Bg8vub9tLe1gHMzV76e4A7d0y3DYBFQ",
"y": "x_FEzG tp placeholder"
}
]
}JSON Web Key Set (RFC 7517)
Signing keys. Cache by kid; algorithms advertised in discovery.
GET
/
oauth
/
jwks
JSON Web Key Set (RFC 7517)
curl --request GET \
--url https://prod-auth.tktchurch.com/oauth/jwksimport Foundation
let url = URL(string: "https://prod-auth.tktchurch.com/oauth/jwks")!
var request = URLRequest(url: url)
request.httpMethod = "GET"
request.timeoutInterval = 10
let (data, _) = try await URLSession.shared.data(for: request)
print(String(decoding: data, as: UTF8.self))const options = {method: 'GET'};
fetch('https://prod-auth.tktchurch.com/oauth/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://prod-auth.tktchurch.com/oauth/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{
"kty": "EC",
"crv": "P-256",
"kid": "2026-09-22",
"use": "sig",
"alg": "ES256",
"x": "f83OJ3D2xF1Bg8vub9tLe1gHMzV76e4A7d0y3DYBFQ",
"y": "x_FEzG tp placeholder"
}
]
}Response
200 - application/json
Success
