Multi-factor authentication_
Add multiple layers of authentication to your applications powered by Appwrite Authentication.
4 min read
Multi-factor authentication (MFA) greatly increases the security of your apps by adding additional layers of protection. When MFA is enabled, a malicious actor needs to compromise multiple authentication factors to gain unauthorized access. Appwrite Authentication lets you easily implement MFA in your apps, letting you build more securely and quickly.
This page covers MFA for your app's end-users. If you are looking for MFA on your Appwrite Console account, please refer to the Console MFA page.
Appwrite currently allows two factors of authentication. More factors of authentication will be available soon.
Here are the steps to implement MFA in your application.
1. Display recovery codes
Initialize your Appwrite SDK's Client, Account, and Avatars. You'll use Avatars API to generate a QR code for the TOTP authenticator app, you can skip this import if you're not using TOTP.
Before enabling MFA, you should display recovery codes to the user. The codes are single use passwords the user can use to access their account if they lose access to their MFA email, phone, or authenticator app. These codes can only be generated once, warn the users to save them.
The code will look like this, display them to the user and remind them to save the codes in a secure place.
{ "recoveryCodes": [ "b654562828", "a97c13d8c0", "311580b5f3", "c4262b3f88", "7f6761afb4", "55a09989be", ]}These codes can be used to complete the Complete challenge step if the user loses access to their MFA factors. Generate the recovery codes by calling account.createMfaRecoveryCodes().
2. Verify MFA factors
Any verified email, phone number, or TOTP authenticator app can be used as a factor for MFA. Before they can be used as a factor, they need to be verified.
3. Enable MFA on an account
You can enable MFA on your account by calling account.updateMFA(). You will need to have added more than 1 factors of authentication to an account before the MFA is enforced.
4. Initialize login
Begin your login flow with the default authentication method used by your app, for example, email password.
5. Check for multi-factor
Upon successful login in the first authentication step, check the status of the login by calling account.get(). If more than one factors are required, you will receive the error user_more_factors_required. Redirect the user in your app to perform the MFA challenge.
6. List factors
You can check which factors are enabled for an account using account.listMfaFactors(). The returned object will be formatted like this.
{ totp: true, // time-based one-time password email: false, // email phone: true // phone}7. Create challenge
Based on the factors available, initialize an additional auth step. Calling these methods will send a challenge to the user. You will need to save the challenge ID to complete the challenge in a later step.
8. Complete challenge
Once the user receives the challenge code, you can pass the code back to Appwrite to complete the challenge.
After completing the challenge, the user is now authenticated and all requests will be authorized. You can confirm this by running account.get()
9. Recovery
In case your user needs to recover their account, they can use the recovery codes generated in the first step with the recovery code factor. Initialize the challenge by calling account.createMfaChallenge() with the factor recoverycode.
Then complete the challenge by calling account.updateMfaChallenge() with the challenge ID and the recovery code.
Was this page helpful?
Share what worked or what we should fix. Once approved, our agents automatically apply suggested updates to the docs.