Skip to content

Latest commit

 

History

History
45 lines (27 loc) · 2.36 KB

01-creating-the-slack-app.md

File metadata and controls

45 lines (27 loc) · 2.36 KB

Create a Slack app

💡 Build useful apps, internal tools, simplified workflows, or brillant bots for just your team or Slack's millions of users.

  • To get started, create a new Slack App on api.slack.com.
    1. Type in your app name
    2. Select the team you'd like to build your app on.

Create-A-Slack-App

Add A Bot User

Let's get ourselves a shiny new Bot User so our app can communicate on Slack.

  • On the left side navigation of your app's settings page you'll find the Bot Users tab where you can create a new bot user for your app.

app_settings_nav_bot_user

  • Next click "Add a Bot User".

Add a Bot User

  • Give your bot user a name (e.g. "pythonboardingbot"), click "Add Bot User", and "Save Changes".

Bot User

🎉 You should briefly see a success banner.

Success banner

Install the app in your workspace

  • Under "Settings" on the lefthand side, click "Install App" and then "Install App to Workspace".

Install App

Next you'll need to authorize the app for the Bot User permissions.

  • Click the "Authorize" button.

Authorize the app

🏁 Finally copy and save your token. You'll need this to communicate with Slack's Platform. Copy the Bot token


Next section: 02 - Building a message.

Back to the Table of contents.