Skip to main content
Module

x/deno_kv_oauth/mod.ts>OAuth2ClientConfig

High-level OAuth 2.0 powered by Deno KV.
Latest
interface OAuth2ClientConfig
Re-export
import { type OAuth2ClientConfig } from "https://deno.land/x/deno_kv_oauth@v0.10.0/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; }