Skip to main content
Module

x/oauth2_client/mod.ts>OAuth2ClientConfig

Minimalistic OAuth 2.0 client for Deno.
Latest
interface OAuth2ClientConfig
import { type OAuth2ClientConfig } from "https://deno.land/x/oauth2_client@v1.0.2/mod.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; }