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

OAuthParams

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

Collection of OAuth protocol parameters except signature.

interface OAuthParams {
oauth_body_hash?: string;
oauth_callback?: string;
oauth_consumer_key: string;
oauth_nonce?: string;
oauth_signature_method?: string;
oauth_timestamp?: number;
oauth_token?: string;
oauth_verifier?: string;
oauth_version?: "1.0";
}

§Properties

§
oauth_body_hash?: string
[src]
§
oauth_callback?: string
[src]
§
oauth_consumer_key: string
[src]
§
oauth_nonce?: string
[src]
§
oauth_signature_method?: string
[src]
§
oauth_timestamp?: number
[src]
§
oauth_token?: string
[src]
§
oauth_verifier?: string
[src]
§
oauth_version?: "1.0"
[src]