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

ConnectorOAuthRequest

import type { ConnectorOAuthRequest } from "https://aws-api.deno.dev/v0.4/services/appflow.ts?docs=full";

Used by select connectors for which the OAuth workflow is supported, such as Salesforce, Google Analytics, Marketo, Zendesk, and Slack.

interface ConnectorOAuthRequest {
authCode?: string | null;
redirectUri?: string | null;
}

§Properties

§
authCode?: string | null
[src]

The code provided by the connector when it has been authenticated via the connected app.

§
redirectUri?: string | null
[src]

The URL to which the authentication server redirects the browser after authorization has been granted.