Enchanted Link via Mobile SDKs
An enchanted link is a single-use link sent to the user for authentication (sign-up or sign-in) that validates their identity. The Descope service sends enchanted links via email.
Enchanted links are an enhanced version of magic links. Enchanted links enable users to start the login process on one device (the originating device) while clicking the enchanted link on a different device. When the user clicks the correct link, their session on the originating device is validated, and they are logged in. A special security feature of enchanted link is that the end-user needs to pick the correct link from the three links delivered to them.
Alert
Enchanted links are user friendly since the user does not have to switch tabs or applications to log in. The browser tab they initiated login from is the only tab they need to use.
Use Cases
- New user signup: The following actions must be completed, first User Sign-Up, then within the same route begin Polling for a valid session, and when the enchanted link is clicked User Verification
- Existing user signin: The following actions must be completed, first User Sign-In, then within the same route begin Polling for a valid session, and when the enchanted link is clicked User Verification
- Sign-Up or Sign-In (Signs up a new user or signs in an existing user): The following actions must be completed, first User Sign-Up or Sign-In, then within the same route begin Polling for a valid session, and when the enchanted link is clicked User Verification
Client SDK
Install SDK
Import and initialize SDK
User Sign-up
For registering a new user, your application client should accept user information, including an email or
phone number used for verification. The application client should send this information to your application
server. In this sample code, the enchanted link will be sent by email to email@company.com
.
The signup call returns a pendingRef
and a linkId
. Display the linkId
to end user from
your application so that they can click on the correct link in the email that they receive. Then your
application will utilize the pendingRef
to poll for verification status on the originating device.
Also note that signup is not complete without the user verification step below.
User Sign-in
For authenticating a user, your application client should accept the user's identity (typically an email address
or phone number). In this sample code, the enchanted link will be sent by email to email@company.com
. The signin
call returns a pendingRef
and a linkId
. Display the linkId
to end user from
your application so that they can click on the correct link in the email that they receive. Then your
application will utilize the pendingRef
to poll for verification status on the originating device.
Also note that signin is not complete without the user verification step below.
User Sign-Up or Sign-In
For signing up a new user or signing in an existing user, you can utilize the signUpOrIn
functionality.
In this sample code, the enchanted link will be sent by email to email@company.com
. The signin
call returns a pendingRef
and a linkId
. Display the linkId
to end user from
your application so that they can click on the correct link in the email that they receive. Then your
application will utilize the pendingRef
to poll for verification status on the originating device.
Note that signUpOrIn is not complete without the user verification step below.
User Verification
Call the verify
function from your verify url. This means that this function needs to be called when the user
clicks the enchanted link. If the token is valid, the user will be authenticated and session returned to the polling thread (see next step).
This should be implemented from your web client or backend sdk when the link is clicked from the email received. The mobile application
will then poll for a session.
Polling for valid session
On the route where you initialized the signIn, signUp, or signUpOrIn, you need to repeatedly poll for a valid session.
get_session(token)
is called repeatedly until the user clicks the enchanted link URL they received, so that the
session on the initiating device can be directed to your desired page.
Update Email
The Descope SDK allows for you to update user's email address. With this function, you will pass the user's loginId
and the new email
address you want associated to the user. In order to verify the email address, the enchanted link will be sent via the email delivery
method. Once the update email function has been called, you will need to verify the token before the email address will be updated.
Session Validation
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.