MFA
Extra Horizon supports multiple multifactor authentication methods. To obtain ExH access tokens you will always need the user credentials. Depending on the MFA settings of the user you will either receive the tokens or be prompted with an error requiring you to use a MFA method.
Currently Extra Horizon supports two MFA methods: Recovery codes and Google Authenticator.
Setting up MFA
Follow the steps below to enable MFA for the first time for a user.
Step 1 - Generate a presence token
The following endpoints require a presence token to prove the correct user is currently present. Ask for the users password and perform following request to retrieve the presence token.
Step 2 - Generate recovery codes for the user
The recovery codes should be shown to the user with an indication to store them in a safe place. They are needed to reset the MFA in case they lose access to the MFA device.
The recovery codes that should be displayed to the user can be found in recoveryMethod.codes
.
Step 3 - Generate a Google Authenticator Secret
In this step we will create a secret that the user has to use in their Google Authenticator app to add an account.
The secret that the user needs can be found in totpMethod.secret
. Display the secret (for instance as a QR code) to the user and ask them to set up the account in Google Authenticator.
Step 4 - Confirm Google Authenticator is set up correctly
Request a code given by Google Authenticator to confirm that the MFA method is setup correctly. Verify it by making the following call:
Step 5 - Enable MFA
The user is now ready to start using MFA on their account. Enable MFA for the user by performing:
Using MFA during authentication
When a user authenticates with an email address and password and MFA is enabled, an error will be returned. You will need to catch that error and provide the One Time Password (which is a recovery code or a code given by Google Authenticator) as follows:
Last updated