Skip to main content
Module

x/deno_kv_oauth/mod.ts>createSlackOAuthConfig

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

Returns the OAuth configuration for Slack.

Requires --allow-env[=SLACK_CLIENT_ID,SLACK_CLIENT_SECRET] permissions and environment variables:

  1. SLACK_CLIENT_ID
  2. SLACK_CLIENT_SECRET

Examples

Example 1

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

const oauthConfig = createSlackOAuthConfig({
  scope: "users.profile:read",
});

Parameters

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