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

ClientCredentialsTokenOptions

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

§Properties

§
requestOptions?: RequestOptions
[src]

Request options used when making the access token request.

§
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