GET /.well-known/jwks.json – Retrieves the JSON Web Key Set (JWKS) for token verification.
Headers:
Body:
Path Parameters:
Query Parameters:
200 OK
400
500
{ "error": "Detailed error message here"} Copy
{ "error": "Detailed error message here"}
GET /.well-known/jwks.json Copy
GET /.well-known/jwks.json
{ "keys": [{ "kty": "RSA", "kid": "key-id", "n": "modulus", "e": "exponent", "alg": "RS256", "use": "sig" }] } Copy
{ "keys": [{ "kty": "RSA", "kid": "key-id", "n": "modulus", "e": "exponent", "alg": "RS256", "use": "sig" }] }
The API Gateway event containing the request.
A Promise resolving to an API Gateway-compatible response.
GET /.well-known/jwks.json – Retrieves the JSON Web Key Set (JWKS) for token verification.
Remarks
📥 Request
Headers:
Body:
Path Parameters:
Query Parameters:
📤 Response
200 OK– JSON stringified object representing the JWKS. See JwksResponse.❗ Errors
400500Error Response Format
📦 Examples
📥 Request
📤 Response Example