Skip to content

Latest commit

 

History

History
83 lines (47 loc) · 3.01 KB

IntrospectionRequestOptions.md

File metadata and controls

83 lines (47 loc) · 3.01 KB

Interface: IntrospectionRequestOptions

💗 Help the project

Support from the community to continue maintaining and improving this module is welcome. If you find the module useful, please consider supporting the project by becoming a sponsor.


Properties

[allowInsecureRequests]?

optional [allowInsecureRequests]: boolean

See allowInsecureRequests.

Deprecated


[customFetch]()?

optional [customFetch]: (url, options) => Promise<Response>

See customFetch.

Parameters

Parameter Type Description
url string URL the request is being made sent to fetch as the resource argument
options CustomFetchOptions<"POST", URLSearchParams> Options otherwise sent to fetch as the options argument

Returns

Promise<Response>


additionalParameters?

optional additionalParameters: Record<string, string> | URLSearchParams | string[][]

Any additional parameters to send. This cannot override existing parameter values.


headers?

optional headers: Record<string, string> | [string, string][] | Headers

Headers to additionally send with the HTTP request(s) triggered by this function's invocation.


requestJwtResponse?

optional requestJwtResponse: boolean

Request a JWT Response from the as.introspection_endpoint. Default is


signal?

optional signal: AbortSignal | () => AbortSignal

An AbortSignal instance, or a factory returning one, to abort the HTTP request(s) triggered by this function's invocation.

Example

A 5000ms timeout AbortSignal for every request

let signal = () => AbortSignal.timeout(5_000) // Note: AbortSignal.timeout may not yet be available in all runtimes.