Β© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabaseβ€’2y agoβ€’
5 replies
Patryk W

Deep link from password reset email not opening the app

I have setup already a method with redirectTo:

  Future<void> sendPasswordResetEmail({required String email}) async {
    return _authClient.resetPasswordForEmail(email,
        redirectTo: 'io.supabase.myprojecto.link://reset-password/');
  }
  Future<void> sendPasswordResetEmail({required String email}) async {
    return _authClient.resetPasswordForEmail(email,
        redirectTo: 'io.supabase.myprojecto.link://reset-password/');
  }



in redirect urls:
  io.supabase.myprojecto.link://reset-password/
  io.supabase.myprojecto.link://reset-password/



in reset password email template:
 <h2>Reset Password</h2>

<p>Follow this link to reset the password for your user:</p>
<p><a href="{{ .RedirectTo }}">Reset Password</a></p>
 <h2>Reset Password</h2>

<p>Follow this link to reset the password for your user:</p>
<p><a href="{{ .RedirectTo }}">Reset Password</a></p>



and in android manifest:
<data
android:host="reset-password"
android:scheme="io.supabase.myprojecto.link" />
<data
android:host="reset-password"
android:scheme="io.supabase.myprojecto.link" />



and nothing...
app is not opened on emulator neither on real device. Any help?

As I understand the next challange will be to authenticate user as hes opening the app? I've lost some time on this already, docs are unclear, not enough info is provided, no examples online...
Supabase banner
SupabaseJoin
Supabase gives you the tools, documentation, and community that makes managing databases, authentication, and backend infrastructure a lot less overwhelming.
45,816Members
Resources

Similar Threads

Was this page helpful?
Recent Announcements

Similar Threads

Password reset link not received
SupabaseSSupabase / help-and-questions
4y ago
Not receiving "reset password" email
SupabaseSSupabase / help-and-questions
3y ago
Reset password link expired
SupabaseSSupabase / help-and-questions
3w ago
Reset Password via email not redirecting back to the iOS app.
SupabaseSSupabase / help-and-questions
5mo ago