-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
1 changed file
with
22 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,22 @@ | ||
# 二段階認証 | ||
|
||
管理画面ログイン時、また、API認証時に二段階認証を行うことができます。 | ||
|
||
## 設定方法 | ||
|
||
管理画面より、[システム基本設定] > [セキュリティ] にて、二段階認証の「利用する」にチェックを入れて保存します。 | ||
|
||
## 仕様 | ||
### Webブラウザでの二段階認証 | ||
管理画面ログイン時、メールでユーザー宛に6桁の数値を送信し、コードの入力画面に遷移します。 | ||
送られてきたコードを入力することでログインが可能になります。 | ||
|
||
### APIでの二段階認証 | ||
APIログイン時、`send_code` をキーとして送信すると、メールでユーザー宛に6桁の数値を送信します。 | ||
送られてきたコードを送信することでログインが可能になります。 | ||
|
||
### コードの有効期間 | ||
コードの有効期間は、デフォルトで10分です。 | ||
|
||
`setting.php` にて、`BcApp.twoFactorAuthenticationCodeAllowTime` を書き換えることで、有効期間を変更することができます。 | ||
|