Skip to main content
Module

x/oauth2_client/mod.ts>RequestOptions

Minimalistic OAuth 2.0 client for Deno.
Latest
interface RequestOptions
import { type RequestOptions } from "https://deno.land/x/oauth2_client@v1.0.2/mod.ts";

Properties

optional
method: HttpVerb

HTTP Method to use when performing outgoing HTTP requests.

optional
headers: Record<string, string>

Headers to set when performing outgoing HTTP requests.

optional
body: Record<string, string>

Body parameters to set when performing outgoing HTTP requests.

optional
urlParams: Record<string, string>

URL parameters to set when performing outgoing HTTP requests.