Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 5 additions & 2 deletions authentication-guides/slack/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -68,8 +68,11 @@ Slack's API provides a powerful way to automate tasks in your Slack workspace. T

1. In Creator Studio, create a new connector with the following configuration:
- Base URL: `https://slack.com/api`
- Auth Config: `Bearer Token`
- Bearer Token: `{{xoxb_your_bot_access_token}}`
- Auth Config: `Api Key Auth`
- Api Key Auth Auth Type: `Header Auth`
- Header Auth Key: `Authorization`
- Header Auth Value Pattern: `Bearer %s`
- Api Key: `{{xoxb_your_bot_access_token}}`
2. Define your API action for channel creation.

```python
Expand Down