Interface SlackAuthParams

Platform-specific parameters for Slack connections.

interface SlackAuthParams {
    botToken?: string;
    signingSecret?: string;
    appToken?: string;
    port?: string;
}

Hierarchy

  • Record<string, string | undefined>
    • SlackAuthParams

Properties

botToken?: string

Bot token (xoxb-*). If provided, overrides credential.

signingSecret?: string

Signing secret for verifying Slack requests.

appToken?: string

App-level token (xapp-*) for Socket Mode. If omitted, HTTP mode is used.

port?: string

Port for HTTP mode (default: '3000'). Ignored when using Socket Mode.