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

OAuthCredentials

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

The OAuth credentials required for OAuth type authentication.

interface OAuthCredentials {
accessToken?: string | null;
clientId: string;
clientSecret: string;
oAuthRequest?: ConnectorOAuthRequest | null;
refreshToken?: string | null;
}

§Properties

§
accessToken?: string | null
[src]

The access token used to access protected SAPOData resources.

§
clientId: string
[src]

The identifier for the desired client.

§
clientSecret: string
[src]

The client secret used by the OAuth client to authenticate to the authorization server.

§
oAuthRequest?: ConnectorOAuthRequest | null
[src]

The OAuth requirement needed to request security tokens from the connector endpoint.

§
refreshToken?: string | null
[src]

The refresh token used to refresh expired access token.