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

OAuthOptions

import type { OAuthOptions } from "https://raw.githubusercontent.com/snsinfu/deno-oauth-1.0a/main/mod.ts";

Collection of user-overridable OAuth protocol parameters.

interface OAuthOptions {
oauth_callback?: string;
oauth_nonce?: string;
oauth_timestamp?: number;
oauth_verifier?: string;
oauth_version?: "1.0";
}

§Properties

§
oauth_callback?: string
[src]
§
oauth_nonce?: string
[src]
§
oauth_timestamp?: number
[src]
§
oauth_verifier?: string
[src]
§
oauth_version?: "1.0"
[src]