#Need help in email verification - react native(expo)

2 messages · Page 1 of 1 (latest)

warm silo
#

Hi, i am trying to verify user, but it is asking me a redirect link, and as i am creating an mobile app, i want it to be done in the app itself. Please if anybody has done it, guide me to complete this email verification process in expo. Thanks

polar sigil
# warm silo Hi, i am trying to verify user, but it is asking me a redirect link, and as i am...

The email verification requires a deep link to your app. You can do this 3 way.

  1. Host a site, apply your verification logic there and verify on that site.
  2. Host a site and implement universal linking so that when the user clicks the verification link it opens your app directly with the necessary data. And verify on the app.
  3. Use a cloud function. Use the domain execution method so that when the browser opens the link it sends the data to the cloud function and from there it redirects to your app with the necessary data.