Skip to content
This repository has been archived by the owner on Feb 17, 2022. It is now read-only.

Latest commit

 

History

History
18 lines (15 loc) · 524 Bytes

Slack.md

File metadata and controls

18 lines (15 loc) · 524 Bytes

Slack

Post message to a channel in Slack

Follow Create a bot for your workspace to create, add a bot to your workspace. Obtain Bot User OAuth Access Token to use to authenticate

Slack {
    $0.post(
        message: .init(
            token: ProcessInfo().environment["slackBotToken"]!,
            channel: "random",
            text: "Hello from Puma",
            username: "onmyway133"
        )
    )
}