Response
array
List of public keys in JWK format.
Documentation Index
Fetch the complete documentation index at: /llms.txt
Use this file to discover all available pages before exploring further.
curl --request GET \
--url 'https://oauth.msu.io/.well-known/jwks.json' \
--header 'Content-Type: application/json'
const response = await fetch('https://oauth.msu.io/.well-known/jwks.json');
const data = await response.json();
import requests
response = requests.get('https://oauth.msu.io/.well-known/jwks.json')
data = response.json()
{
"keys": [
{
"kty": "RSA",
"kid": "msu-oauth",
"use": "sig",
"alg": "RS256",
"n": "qdv0bvFFiXcOd86MazNh...",
"e": "AQAB"
}
]
}
Retrieve the public key list used to verify Access Token signatures.
curl --request GET \
--url 'https://oauth.msu.io/.well-known/jwks.json' \
--header 'Content-Type: application/json'
const response = await fetch('https://oauth.msu.io/.well-known/jwks.json');
const data = await response.json();
import requests
response = requests.get('https://oauth.msu.io/.well-known/jwks.json')
data = response.json()
{
"keys": [
{
"kty": "RSA",
"kid": "msu-oauth",
"use": "sig",
"alg": "RS256",
"n": "qdv0bvFFiXcOd86MazNh...",
"e": "AQAB"
}
]
}
