#Need help in email verification - react native(expo)
2 messages · Page 1 of 1 (latest)
The email verification requires a deep link to your app. You can do this 3 way.
- Host a site, apply your verification logic there and verify on that site.
- 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.
- 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.