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

OAuthProperties

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

The OAuth properties required for OAuth type authentication.

interface OAuthProperties {
authCodeUrl: string;
oAuthScopes: string[];
tokenUrl: string;
}

§Properties

§
authCodeUrl: string
[src]

The authorization code url required to redirect to SAP Login Page to fetch authorization code for OAuth type authentication.

§
oAuthScopes: string[]
[src]

The OAuth scopes required for OAuth type authentication.

§
tokenUrl: string
[src]

The token url required to fetch access/refresh tokens using authorization code and also to refresh expired access token using refresh token.