Skip to main content
Module

x/jose/index.ts>RemoteJWKSetOptions

JWA, JWS, JWE, JWT, JWK, JWKS for Node.js, Browser, Cloudflare Workers, Deno, Bun, and other Web-interoperable runtimes.
Extremely Popular
Go to Latest
interface RemoteJWKSetOptions
import { type RemoteJWKSetOptions } from "https://deno.land/x/jose@v5.2.4/index.ts";

Options for the remote JSON Web Key Set.

Properties

optional
timeoutDuration: number

Timeout (in milliseconds) for the HTTP request. When reached the request will be aborted and the verification will fail. Default is 5000 (5 seconds).

optional
cooldownDuration: number

Duration (in milliseconds) for which no more HTTP requests will be triggered after a previous successful fetch. Default is 30000 (30 seconds).

optional
cacheMaxAge: number | Infinity

Maximum time (in milliseconds) between successful HTTP requests. Default is 600000 (10 minutes).

optional
agent: any

An instance of http.Agent or https.Agent to pass to the http.get or https.get method's options. Use when behind an http(s) proxy. This is a Node.js runtime specific option, it is ignored when used outside of Node.js runtime.

optional
headers: Record<string, string>

Headers to be sent with the HTTP request. Default is that User-Agent: jose/v${version} header is added unless the runtime is a browser in which adding an explicit headers fetch configuration would cause an unnecessary CORS preflight request.