Skip to main content
Module

x/deno_kv_oauth/mod.ts>createGitHubOAuthConfig

High-level OAuth 2.0 powered by Deno KV.
Latest
function createGitHubOAuthConfig
import { createGitHubOAuthConfig } from "https://deno.land/x/deno_kv_oauth@v0.10.0/mod.ts";

Returns the OAuth configuration for Facebook.

Requires --allow-env[=GITHUB_CLIENT_ID,GITHUB_CLIENT_SECRET] permissions and environment variables:

  1. GITHUB_CLIENT_ID
  2. GITHUB_CLIENT_SECRET

Examples

Example 1

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

const oauthConfig = createGitHubOAuthConfig();

Parameters

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