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

GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow

import type { GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow } from "https://googleapis.deno.dev/v1/integrations:v1.ts";

Parameters to support Oauth 2.0 Auth Code Grant Authentication. See https://www.rfc-editor.org/rfc/rfc6749#section-1.3.1 for more details.

interface GoogleCloudConnectorsV1AuthConfigOauth2AuthCodeFlow {
authCode?: string;
authUri?: string;
clientId?: string;
enablePkce?: boolean;
pkceVerifier?: string;
redirectUri?: string;
scopes?: string[];
}

§Properties

§
authCode?: string
[src]

Authorization code to be exchanged for access and refresh tokens.

§
authUri?: string
[src]

Auth URL for Authorization Code Flow

§
clientId?: string
[src]

Client ID for user-provided OAuth app.

§

Client secret for user-provided OAuth app.

§
enablePkce?: boolean
[src]

Whether to enable PKCE when the user performs the auth code flow.

§
pkceVerifier?: string
[src]

PKCE verifier to be used during the auth code exchange.

§
redirectUri?: string
[src]

Redirect URI to be provided during the auth code exchange.

§
scopes?: string[]
[src]

Scopes the connection will request when the user performs the auth code flow.