Skip to main content
Using Deno in production at your company? Earn free Deno merch.
Give us feedback
Module

x/fathym_common/src/deno.deps.ts>DenoKVOAuth.createTwitterOAuthConfig

The Fathym Reference Architecture provides the common foundation for applications built in Typescript.
Go to Latest
function DenoKVOAuth.createTwitterOAuthConfig
import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.183/src/deno.deps.ts";
const { createTwitterOAuthConfig } = DenoKVOAuth;

Returns the OAuth configuration for Twitter.

Requires --allow-env[=TWITTER_CLIENT_ID,TWITTER_CLIENT_SECRET] permissions and environment variables:

  1. TWITTER_CLIENT_ID
  2. TWITTER_CLIENT_SECRET

Examples

Example 1

import { createTwitterOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";

const oauthConfig = createTwitterOAuthConfig({
  redirectUri: "http://localhost:8000/callback",
  scope: "users.read",
});

Parameters

config: { redirectUri: string; scope: string | string[]; }