...

/

Creating Our Slack Application

Creating Our Slack Application

Learn to create Slack application with a step-by-step tutorial.

We'll cover the following...

For the bot to interact with Slack, we need to set up a Slack application:

Press + to interact
Create New App button
1 / 9
Create New App button

The slides are explained as follows:

  1. Navigate to Slack on your browser. Here, you will need to click on the “Create an App” button.

  2. We will then be presented with the following dialog box with sub-items such as “From scratch” and “From an app manifest.”

  3. Choose the “From an app manifest” option. Choose the workspace we created at the beginning of this section and then press “Create App.” Click the “Next” button.

  4. Copy the text from the file presented below:

Press + to interact
display_information:
name: PetStore
features:
app_home:
home_tab_enabled: true
messages_tab_enabled: false
messages_tab_read_only_enabled: false
bot_user:
display_name: PetStore
always_online: false
oauth_config:
scopes:
bot:
- app_mentions:read
- channels:history
- channels:join
- chat:write
- chat:write.public
- commands
- files:write
- groups:read
- incoming-webhook
- links:write
- usergroups:read
- users.profile:read
- users:read
- chat:write.customize
- im:read
settings:
event_subscriptions:
bot_events:
- app_mention
interactivity:
is_enabled: true
org_deploy_enabled: false
socket_mode_enabled: true
token_rotation_enabled: false

Paste it onto the screen that is shown. Click the “Next” button.

    ...