Skip to content

Commit

Permalink
docs: Add missing parts in Getting Started (Japanese) (#2339)
Browse files Browse the repository at this point in the history
Co-authored-by: Akira Kure <kuredev@users.noreply.github.com>
Co-authored-by: Kazuhiro Sera <seratch@gmail.com>
  • Loading branch information
3 people authored Nov 19, 2024
1 parent 7020a2e commit 01558b5
Showing 1 changed file with 29 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -188,6 +188,35 @@ import TabItem from '@theme/TabItem';

もしボットに参加しているすべての場所で全てのメッセージイベントをリッスンさせたいなら、これら4つ全てのイベントを選んでください。選択したら、緑の **Save Changes** ボタンをクリックします。

<Tabs groupId="socket-or-http">
<TabItem value="socket-mode" label="Socket Mode">

プロジェクトに戻り、先ほど保存した `xapp` トークンを環境変数に保存してください。

```shell
export SLACK_APP_TOKEN=xapp-<your-app-token>
```

Bolt の初期化部分のコードを変更し、アプリを再起動してください。

```javascript
// ソケットモードでトークンおよび signing secret で初期化します。
const app = new App({
token: process.env.SLACK_BOT_TOKEN,
signingSecret: process.env.SLACK_SIGNING_SECRET,
socketMode: true, // 追加
appToken: process.env.SLACK_APP_TOKEN // 追加
});
```

</TabItem>
<TabItem value="http" label="HTTP">

ここでの設定は特にありません。このまま続けてください!

</TabItem>
</Tabs>

---

## メッセージのリスニングと応答 {#listening-and-responding-to-a-message}
Expand Down

0 comments on commit 01558b5

Please sign in to comment.