How do I redirect to expo?

Hello all,

I am creating a react-native app where sign up is with the email. I call signup like this:

const redirectURL = Linking.createURL('/AccountVerified');
    const { error } = await supabase.auth.signUp({whatever, options: {
        emailRedirectTo: redirectURL
}}


However, when I click on the link in the email I get redirected to localhost. On Supabase, URL Configuration section, I try to set myapp:// as redirect url. However, it says that is invalid.

Has anyone achieve something similar?

Any clue would be really appreciated.

Thank you in advance and regards
Was this page helpful?