Two Factor Authentication
This article explains 2FA implementation in Aidbox
Two Factor Authentication is not supported for external OAuth 2.0 providers
Aidbox supports Two Factor Authentication with TOTP (time-based one-time passwords). This article explains how to enable 2FA for a user, login with one-time password, and get an access token for your application. Familiarity with OAuth 2.0 and TOTP is suggested.
Try demo app with 2FA implementation
We've prepared the demo Python/TypeScript app with Devbox, so you can run everything in your local environment. The implemented scenario includes signup and login user flows.
Clone the open-source application repository. Follow the instructions to see how does 2FA work.
First of all, you need to define 3 resources in the manifest.py file
1. AuthConfig
AuthConfig
resource is required for 2FA process. In the demo app, we've generated the following AuthConfig
with the name app
.
AuthConfig attribute | meaning |
---|---|
| Name of the TOTP token issuer that is shown in authenticator |
| Number of previous tokens that are considered valid. Used to improve user experience if standard 30 seconds token lifetime is not enough. |
| Endpoint to send the TOTP token to during login. Used to support scenarios when it's not possible to use the mobile authenticator. For instance, a service integrated with twilio may listen on this address. |
| Timeout for webhook in milliseconds |
| Key-value headers for webhook |
| URL to external stylesheet to customise how the authentication form looks like |
| Title to use on the authentication form |
| Application name to display on the authentication page |
2. Client
Client
resource is required for 2FA process. In the demo app we've generated the following Client resource with the name "web"ya
Read more about Client resource configuration here
3. Provider
Provider resource belongs to the AidboxConfig
. It defines the transport for sending email notifications, which is part of the signup flow. Since we do not want to send real emails in the demo app, we'll send notifications to the Console output stream. You can find the generated Provider resource below
When the user scans the QR code and enters the token, he is redirected to the 2FA settings page. Aidbox saves that 2FA is enabled for this user into the User.twoFactor attribute.
Next time when the user logs into the system, the TOTP authentication page will be shown. Using the mobile authenticator (or any other transport) the user enters the code and gets redirected to the application. You can configure which OAuth 2.0 flow by changing Client configuration and login endpoint query parameters.
Disable 2FA
To disable 2FA for a particular user, redirect the user to the following URL. When the user enters a token, they get redirected to the 2FA settings page. Aidbox sets User.twoFactor.enabled
to false
.
Last updated