Skip to content
This repository was archived by the owner on Jul 14, 2023. It is now read-only.

Commit 61596f5

Browse files
authored
Update README.md
1 parent 9a60677 commit 61596f5

File tree

1 file changed

+2
-5
lines changed

1 file changed

+2
-5
lines changed

README.md

+2-5
Original file line numberDiff line numberDiff line change
@@ -1,11 +1,8 @@
11
# slack-slash-lambda
2-
This repo holds code and configuration for lambda based [slash commands](https://api.slack.com/slash-commands) for Slack.
2+
This repo holds code and configuration to create a lambda based [slash commands](https://api.slack.com/slash-commands) for Slack. The processing of the commands is done asynchronously.
33

44
## Details for geeks
5-
Slack allows your API to respond in sync or async manner. For synchronus calls the
6-
timeout is 3 seconds. For any work that might take longer than that it is recommended to use callback url while responding with `200 OK` to the initial call.
7-
The configuration in thie repo configures API gateway to run the Lambdas asynchronusly.
8-
5+
Slack allows support both sync and async API. For synchronus calls the timeout is 3 seconds. For longer processing periods, async API is the way to go. This repository configured to respond in async manner. It is done by responding with `200 OK` to the initial call and passing the callback url to the handler function.
96

107
# Pre-Requirements
118
To deploy this you will need the following

0 commit comments

Comments
 (0)