Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
class JwksRequestHandler
extends BaseApiRequestHandler<boolean>
import { JwksRequestHandler } from "https://deno.land/x/authlete_deno@v1.2.3/src/handler/jwks_request_handler.ts";

Handler for requests to an endpoint that exposes JSON Web Key Set (RFC 7517) document.

An OpenID Provider (OP) is required to expose its JSON Web Key Set document (JWK Set) so that client applications can (1) verify signatures by the OP and (2) encrypt their requests to the OP. The URI of a JWK Set endpoint can be found as the value of jwks_uri in OpenID Provider Metadata, if the OP supports OpenID Connect Discovery 1.0.

Methods

handle(pretty: boolean)

Handle a request to a JWK Set document endpoint.