Skip to content

Commit 9136169

Browse files
links
1 parent 5767e6e commit 9136169

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

docs/english/index.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ The Slack platform offers several APIs to build apps. Each Slack API delivers pa
99
| Feature | Use | Package |
1010
|---|---|---|
1111
| [Web API](/python-slack-sdk/web) | Send data to or query data from Slack using any of over 200 methods. | `slack_sdk.web`, `slack_sdk.web.async_client` |
12-
| [Webhooks](/python-slack-sdk/webhooks) / `response_url` | Send a message using Incoming Webhooks or `response_url` | `slack_sdk.webhook`, `slack_sdk.webhook.async_client` |
12+
| [Webhooks](/python-slack-sdk/webhook) / `response_url` | Send a message using Incoming Webhooks or `response_url` | `slack_sdk.webhook`, `slack_sdk.webhook.async_client` |
1313
| [Socket Mode](/python-slack-sdk/socket-mode) | Receive and send messages over Socket Mode connections. | `slack_sdk.socket_mode` |
1414
| [OAuth](/python-slack-sdk/oauth) | Setup the authentication flow using V2 OAuth, OpenID Connect for Slack apps. | `slack_sdk.oauth` |
1515
| [Audit Logs API](/python-slack-sdk/audit-logs) | Receive audit logs API data. | `slack_sdk.audit_logs` |

docs/english/legacy/basic_usage.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -53,13 +53,13 @@ response = client.chat_postEphemeral(
5353
)
5454
```
5555

56-
See the [`chat.postEphemeral`](/reference/methods/chat.postephemeral) API method for more details.
56+
See the [`chat.postEphemeral`](/reference/methods/chat.postEphemeral) API method for more details.
5757

5858
## Formatting messages with Block Kit {#block-kit}
5959

6060
Messages posted from apps can contain more than just text; they can also include full user interfaces composed of blocks using [Block Kit](/block-kit).
6161

62-
The [`chat.postMessage method`](/reference/methods/chat.postmessage) takes an optional blocks argument that allows you to customize the layout of a message. Blocks are specified in a single object literal, so just add additional keys for any optional argument.
62+
The [`chat.postMessage method`](/reference/methods/chat.postMessage) takes an optional blocks argument that allows you to customize the layout of a message. Blocks are specified in a single object literal, so just add additional keys for any optional argument.
6363

6464
To send a message to a channel, use the channel's ID. For DMs, use the user's ID.
6565

docs/english/web.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Each of these [API methods](/reference/methods) is fully documented on our devel
1010

1111
One of the primary uses of Slack is posting messages to a channel using the channel ID, or as a DM to another person using their user ID. This method will handle either a channel ID or a user ID passed to the `channel` parameter.
1212

13-
Your app's bot user needs to be in the channel (otherwise, you will get either `not_in_channel` or `channel_not_found` error code). If your app has the [chat:write.public](/reference/scopes/chat.write.public) scope, your app can post messages without joining a channel as long as the channel is public. See the [chat.postMessage](/reference/methods/chat.postmessage) API method for more info.
13+
Your app's bot user needs to be in the channel (otherwise, you will get either `not_in_channel` or `channel_not_found` error code). If your app has the [chat:write.public](/reference/scopes/chat.write.public) scope, your app can post messages without joining a channel as long as the channel is public. See the [chat.postMessage](/reference/methods/chat.postMessage) API method for more info.
1414

1515
``` python
1616
import logging
@@ -49,13 +49,13 @@ response = client.chat_postEphemeral(
4949
)
5050
```
5151

52-
See the [`chat.postEphemeral`](/reference/methods/chat.postephemeral) API method for more details.
52+
See the [`chat.postEphemeral`](/reference/methods/chat.postEphemeral) API method for more details.
5353

5454
## Formatting messages with Block Kit {#block-kit}
5555

5656
Messages posted from apps can contain more than just text; they can also include full user interfaces composed of blocks using [Block Kit](/block-kit).
5757

58-
The [`chat.postMessage method`](/reference/methods/chat.postmessage) takes an optional blocks argument that allows you to customize the layout of a message. Blocks can be specified
58+
The [`chat.postMessage method`](/reference/methods/chat.postMessage) takes an optional blocks argument that allows you to customize the layout of a message. Blocks can be specified
5959
in a single array of either dict values or [slack_sdk.models.blocks.Block](https://tools.slack.dev/python-slack-sdk/api-docs/slack_sdk/models/blocks/index.html) objects.
6060

6161
To send a message to a channel, use the channel's ID. For DMs, use the user's ID.

0 commit comments

Comments
 (0)