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

ResourceOwnerPasswordCredentialsTokenOptions

import type { ResourceOwnerPasswordCredentialsTokenOptions } from "https://raw.githubusercontent.com/cmd-johnson/deno-oauth2-client/master/mod.ts";
interface ResourceOwnerPasswordCredentialsTokenOptions {
password: string;
requestOptions?: RequestOptions;
scope?: string | string[];
username: string;
}

§Properties

§
password: string
[src]

The resource owner password

§
requestOptions?: RequestOptions
[src]
§
scope?: string | string[]
[src]

Scopes to request with the authorization request.

If an array is passed, it is concatenated using spaces as per https://tools.ietf.org/html/rfc6749#section-3.3

§
username: string
[src]

The resource owner username