This guide is meant for developers that are NOT using Descope Flows to design login screens and authentication methods.
If you'd like to use Descope Flows, Quick Start should be your starting point.
Descope supports validating sign-up and sign-ins via Authenticator Applications which provide a Time-based One-time Password (TOTP).
Google Authenticator, Microsoft Authenticator, and Authy are examples of authenticator apps. Descope generates the required QR
code or key (also called a secret or seed) in order to configure new a new Authenticator.
baseUrl: Custom domain that must be configured to manage token response in cookies. This makes sure every request to our service is through your custom domain, preventing accidental domain blockages.
baseStaticUrl: Custom domain to override the base URL that is used to fetch static files.
The first step for implementing TOTP authentication is sign-up. In this step the user registers their TOTP app with the authentication
service. Descope will generate a TOTP key (also called a secret or seed) that will be entered into the end user's authenticator app so
that TOTP codes can be successfully verified. The new end user will be registered after the full TOTP sign-up flow has been successfully completed.
For signing in, your application client must prompt the user for loginId, such as email or phone, and the code from the
authenticator application. Your client will then call the verify function. Upon successful verification, the user will be
logged in and the response will include the JWT information.
The update user call is used when you would like to associate a new authenticator method with an existing and authenticated user.
You need to pass the refresh token or http request of an authenticated user. The update will work only if the user is authenticated.
The final step of completing the authentication with Descope is to validate the user session. Descope provides rich session management capabilities, including configurable session timeouts and
logout functions. You can find the details and sample code for client session validation here.
Checkpoint
Your application is now integrated with Descope. Please test with sign-up or sign-in use case.