Hi there! Are you looking for the official Deno documentation? Try docs.deno.com for all your Deno learning needs.

OAuth2Config

import type { OAuth2Config } from "https://googleapis.deno.dev/v1/connectors:v2.ts";
interface OAuth2Config {
authUri?: string;
clientId?: string;
clientSecret?: string;
}

§Properties

§
authUri?: string
[src]

Authorization Server URL/Token Endpoint for Authorization Code Flow

§
clientId?: string
[src]

Client ID for the OAuth2 flow.

§
clientSecret?: string
[src]

Client secret for the OAuth2 flow.