OAuth
Get JSON Web Key Set
GET
https://api.join.tl
/
oauth
/
jwks
Get JSON Web Key Set
curl --request GET \
--url https://api.join.tl/oauth/jwksconst options = {method: 'GET'};
fetch('https://api.join.tl/oauth/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.join.tl/oauth/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{}
]
}Response
200 - application/json
Current signing keys.
⌘I
Get JSON Web Key Set
curl --request GET \
--url https://api.join.tl/oauth/jwksconst options = {method: 'GET'};
fetch('https://api.join.tl/oauth/jwks', options)
.then(res => res.json())
.then(res => console.log(res))
.catch(err => console.error(err));import requests
url = "https://api.join.tl/oauth/jwks"
response = requests.get(url)
print(response.text){
"keys": [
{}
]
}