Skip to main content
Module

x/deno_kv_oauth/mod.ts>createPatreonOAuth2Client

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

Creates an OAuth 2.0 client with Patreon as the provider.

Requires --allow-env[=PATREON_CLIENT_ID,PATREON_CLIENT_SECRET] permissions and environment variables:

  1. PATREON_CLIENT_ID
  2. PATREON_CLIENT_SECRET

Examples

Example 1

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

const oauth2Client = createPatreonOAuth2Client({
 redirectUri: "http://localhost:8000/callback",
 defaults: {
   scope: "identity identity[email]"
 }
});

Parameters

additionalOAuth2ClientConfig: Partial<OAuth2ClientConfig> & WithRedirectUri & WithScope

Requires redirectUri and defaults.scope properties.