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

AuthCodeData

import type { AuthCodeData } from "https://googleapis.deno.dev/v1/connectors:v2.ts";

AuthCodeData contains the data the runtime plane will give the connector backend in exchange for access and refresh tokens.

interface AuthCodeData {
authCode?: string;
pkceVerifier?: string;
redirectUri?: string;
scopes?: string[];
}

§Properties

§
authCode?: string
[src]

OAuth authorization code.

§
pkceVerifier?: string
[src]

OAuth PKCE verifier, needed if PKCE is enabled for this particular connection.

§
redirectUri?: string
[src]

OAuth redirect URI passed in during the auth code flow, required by some OAuth backends.

§
scopes?: string[]
[src]

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