Skip to main content
Deno 2 is finally here 🎉️
Learn more
Go to Latest
function DenoKVOAuth.createNotionOAuthConfig
import { DenoKVOAuth } from "https://deno.land/x/fathym_eac_runtime@v0.0.140/src/src.deps.ts";
const { createNotionOAuthConfig } = DenoKVOAuth;

Returns the OAuth configuration for Notion.

Requires --allow-env[=NOTION_CLIENT_ID,NOTION_CLIENT_SECRET] permissions and environment variables:

  1. NOTION_CLIENT_ID
  2. NOTION_CLIENT_SECRET

Examples

Example 1

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

const oauthConfig = createNotionOAuthConfig();

Parameters

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