import { DenoKVOAuth } from "https://deno.land/x/fathym_common@v0.0.155/src/src.deps.ts";
const { createPatreonOAuthConfig } = DenoKVOAuth;
Returns the OAuth configuration for Patreon.
Requires --allow-env[=PATREON_CLIENT_ID,PATREON_CLIENT_SECRET]
permissions
and environment variables:
PATREON_CLIENT_ID
PATREON_CLIENT_SECRET
Examples
Example 1
Example 1
import { createPatreonOAuthConfig } from "https://deno.land/x/deno_kv_oauth@$VERSION/mod.ts";
const oauthConfig = createPatreonOAuthConfig({
redirectUri: "http://localhost:8000/callback",
scope: "identity identity[email]"
});