Keyset
Your account's public JWKS. Tools fetch this to verify the ID Tokens LTIAAS signs on your behalf. You never call this — hand its URL to the tool vendor as the keyset or JWKS URL.
The set contains one key per registered tool, each with its kid set to that tool's ID. An account with no registered tools returns an empty keys array rather than a 404.
- 200
JSON Web Key Set
Schema
- Array [
- ]
keys object[]
The tool's ID.
{
"keys": [
{
"kty": "RSA",
"kid": "string",
"alg": "RS256",
"use": "sig",
"n": "string",
"e": "AQAB"
}
]
}
