Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Fixes #1014 - Adds JP translation for token rotation changes. #1175

Merged
merged 3 commits into from
Oct 22, 2021
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion docs/_advanced/ja_context.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: context の追加
lang: ja-jp
slug: context
order: 6
order: 7
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_conversation_store.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: 会話ストア
lang: ja-jp
slug: conversation-store
order: 3
order: 4
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_custom_routes.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: カスタム HTTP ルートの追加
lang: ja-jp
slug: custom-routes
order: 9
order: 10
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_logging.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: ログの表示
lang: ja-jp
slug: logging
order: 7
order: 8
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_middleware_global.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: グローバルミドルウェア
lang: ja-jp
slug: global-middleware
order: 4
order: 5
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_middleware_listener.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: リスナーミドルウェア
lang: ja-jp
slug: listener-middleware
order: 5
order: 6
---

<div class="section-content">
Expand Down
2 changes: 1 addition & 1 deletion docs/_advanced/ja_receiver.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
title: レシーバーのカスタマイズ
lang: ja-jp
slug: receiver
order: 8
order: 9
---

<div class="section-content">
Expand Down
16 changes: 16 additions & 0 deletions docs/_advanced/ja_token_rotation.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
---
title: トークンのローテーション
lang: ja-jp
slug: token-rotation
order: 3
---

<div class="section-content">
Bolt for JavaScript [v3.5.0](https://github.com/slackapi/bolt-js/releases/tag/%40slack%2Fbolt%403.5.0) から、アクセストークンのさらなるセキュリティ強化のレイヤーであるトークンローテーションの機能に対応しています。トークンローテーションは [OAuth V2 の RFC](https://datatracker.ietf.org/doc/html/rfc6749#section-10.4) で規定されているものです。

既存の Slack アプリではアクセストークンが無期限に存在し続けるのに対して、トークンローテーションを有効にしたアプリではアクセストークンが失効するようになります。リフレッシュトークンを利用して、アクセストークンを長期間にわたって更新し続けることができます。

[Bolt for JavaScript の組み込みの OAuth 機能](https://slack.dev/bolt-js/ja-jp/concepts#authenticating-oauth) を使用していれば、Bolt for JavaScript が自動的にトークンローテーションの処理をハンドリングします。

トークンローテーションに関する詳細は [API ドキュメント](https://api.slack.com/authentication/rotation)を参照してください。
</div>