slacko 0.2.2

Comprehensive Rust SDK for the Slack API with stealth mode support
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
# Slack Bot Configuration

# Channel to join (can be channel ID or name)
SLACK_CHANNEL=C01234567

# Authentication Method 1: Stealth Mode (xoxc + xoxd tokens)
# Use these for browser-extracted tokens without requiring bot installation
# SLACK_XOXC_TOKEN=xoxc-1234567890-...
# SLACK_XOXD_COOKIE=xoxd-1234567890...

# Authentication Method 2: OAuth Token (xoxp)
# Use this for secure OAuth tokens
# SLACK_XOXP_TOKEN=xoxp-1234567890-...

# Note: You must provide either:
# - Both SLACK_XOXC_TOKEN and SLACK_XOXD_COOKIE (stealth mode), OR
# - SLACK_XOXP_TOKEN (OAuth mode)