You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository was archived by the owner on May 28, 2025. It is now read-only.
Copy file name to clipboardExpand all lines: README.md
+5-5Lines changed: 5 additions & 5 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -66,9 +66,9 @@ If you are running this project locally, you'll need to set up tunnels for Slack
66
66
You'll likely want to test events coming to your server without going through the actions on your Slack team. [Postman](https://www.getpostman.com/) is a useful tool you can use to recreate requests sent from Slack to your server. This is especially helpful for events like user join, where the workflow to recreate the event requires quite a bit of set up.
67
67
68
68
## Let's get started :tada:
69
-
***[Section 1: ~~Steal~~ Build This Bot](docs/Section-1.md)**:point_left:
70
-
*[Section 2: Create a Slack App and Bot User](docs/Section-2.md)
71
-
*[Section 3: Subscribe to Events](docs/Section-3.md)
69
+
***[Section 1: ~~Steal~~ Build This Bot](docs/Section-1.md)**:point_left:
70
+
*[Section 2: Create a Slack App and Bot User](docs/Section-2.md)
71
+
*[Section 3: Subscribe to Events](docs/Section-3.md)
72
72
*[Section 4: App Credentials](docs/Section-4.md)
73
73
*[Section 5: Make it Go](docs/Section-5.md)
74
74
@@ -77,8 +77,8 @@ You'll likely want to test events coming to your server without going through th
77
77
### Documentation
78
78
79
79
##### Slack Documentation
80
-
*[Getting started with Slack apps](https://api.slack.com/slack-apps)
81
-
*[Slack Events API documentation](https://api.slack.com/events)
80
+
*[Getting started with Slack apps](https://api.slack.com/slack-apps)
81
+
*[Slack Events API documentation](https://api.slack.com/events)
82
82
*[Slack Web API documentation](https://api.slack.com/web)
Copy file name to clipboardExpand all lines: docs/Section-1.md
+4-4Lines changed: 4 additions & 4 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -10,7 +10,7 @@ This file handles all incoming requests from Slack. In this file, we'll import t
10
10
First, you'll want to create a Flask app in [`app.py`](./../app.py).
11
11
Then you'll need to add a couple routes:
12
12
-**`"/install"`** a route that renders an installation page where users can add your Slack app to their team
13
-
-**`"/thanks"`** a route that renders a thank you page to let users know your app has been sucessfully installed.
13
+
-**`"/thanks"`** a route that renders a thank you page to let users know your app has been successfully installed.
14
14
- This route will be the endpoint of the `redirect URL` where Slack will send a temporary authorization code. We'll exchange that code for an OAuth token here, using our `bot` object's `auth` method.
15
15
-**`"/listening"`** a route that listens for all incoming requests from Slack.
16
16
- This route will be the endpoint of the `request URL` where Slack will send all Events your app is subscribed to.
@@ -49,12 +49,12 @@ This file contains a python class for creating `message` objects. Creating `mess
49
49
### Other Stuff
50
50
51
51
#### [Templates Folder](./../templates)
52
-
You'll need some HTML for your [installation](./../templates/install.html) and [thank you](./../templates/thanks.html) pages. Once you create this folder, we'll use Jinja templates and add the [Add to Slack](https://api.slack.com/docs/slack-button) button to allow users to install our app. The [thank you page](./../templates/thanks.html) lets users know that the app has been sucessfully installed.
52
+
You'll need some HTML for your [installation](./../templates/install.html) and [thank you](./../templates/thanks.html) pages. Once you create this folder, we'll use Jinja templates and add the [Add to Slack](https://api.slack.com/docs/slack-button) button to allow users to install our app. The [thank you page](./../templates/thanks.html) lets users know that the app has been successfully installed.
53
53
54
54
#### [welcome.json](./../welcome.json)
55
55
This is a JSON file of message attachments used in the `message.py` file to create the onboarding welcome message our bot will send to new users.
56
56
57
57
58
58
---
59
-
**Next [Section 2: Create a Slack App and Bot User](./../docs/Section-2.md)**
60
-
**Previous [README](./../README.md)**
59
+
**Next [Section 2: Create a Slack App and Bot User](./../docs/Section-2.md)**
0 commit comments