Skip to content

Commit 63598b0

Browse files
docs: fix broken link to the WebClient (#1235)
1 parent 4fce092 commit 63598b0

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

docs/content/basic/web-api.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ lang: en
44
slug: /concepts/web-api
55
---
66

7-
You can call [any Web API method](https://api.slack.com/methods) using the [`WebClient`](https://tools.slack.dev/python-slack-sdk/basic_usage.html) provided to your Bolt app as either `app.client` or `client` in middleware/listener arguments (given that your app has the appropriate scopes). When you call one the client's methods, it returns a `SlackResponse` which contains the response from Slack.
7+
You can call [any Web API method](https://api.slack.com/methods) using the [`WebClient`](https://tools.slack.dev/python-slack-sdk/web) provided to your Bolt app as either `app.client` or `client` in middleware/listener arguments (given that your app has the appropriate scopes). When you call one the client's methods, it returns a `SlackResponse` which contains the response from Slack.
88

99
The token used to initialize Bolt can be found in the `context` object, which is required to call most Web API methods.
1010

@@ -25,4 +25,4 @@ def say_hello(client, message):
2525
post_at=when_september_ends,
2626
text="Summer has come and passed"
2727
)
28-
```
28+
```

0 commit comments

Comments
 (0)