I want to configure a Mongo Stitch App to confirm users via e-mail. I'd like to use a deep link to link directly into my react native expo app. During development the link would be "exp://localhost:19000/". The link correctly reaches my app.
Unfortunately Stitch under "Auth Providers > Edit local-userpass" does not accept this link. The error message is:
"Please enter a URL beginning with a valid scheme such as https:// or http://"
To replicate this error:
Setup a stitch app as described in the docs: https://www.mongodb.com/cloud/stitch
In the stitch settings under "Users > Providers" enable "Email/Password" and go into the config settings for this authorization method. There, choose "Send a confirmation email".
You are now prompted to configure a "Email Confirmation URL". Apparently this can not be a deep link to an expo app. The link needs to start with http or https but expo deep links start with "epx" as outlined here https://docs.expo.io/versions/latest/workflow/linking/#linking-module.
Any help would be greatly appreciated!