Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface TokenRequestHandler.Params
import { type TokenRequestHandler } from "https://deno.land/x/authlete_deno@v1.2.3/mod.ts";
const { Params } = TokenRequestHandler;

Input parameters for the handle() method of TokenRequestHandler class.

Properties

parameters: { [key: string]: string; } | null

The request parameters of a token request.

authorization: string | null

The value of the Authorization header in the token request. A pair of client ID and client secret is embedded there when the client authentication method is client_secret_basic.

optional
clientCertificatePath: string[]

The path of the client's certificate, each in PEM format. The first item in the array is the client's certificate itself.

For more details, see RFC 8705 : OAuth 2.0 Mutual-TLS Client Authentication and Certificate-Bound Access Tokens.