Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Go to Latest
interface OAuth2ClientConfig
Re-export
import { type OAuth2ClientConfig } from "https://deno.land/x/fathym_everything_as_code@v0.0.351/src/src.deps.ts";

Properties

clientId: string

The client ID provided by the authorization server.

optional
clientSecret: string

The client secret provided by the authorization server, if using a confidential client.

optional
redirectUri: string

The URI of the client's redirection endpoint (sometimes also called callback URI).

authorizationEndpointUri: string

The URI of the authorization server's authorization endpoint.

tokenUri: string

The URI of the authorization server's token endpoint.

optional
defaults: { requestOptions?: Omit<RequestOptions, "method">; scope?: string | string[]; stateValidator?: (state: string | null) => Promise<boolean> | boolean; }