© 2026 Hedgehog Software, LLC

TwitterGitHubDiscord
More
CommunitiesDocsAboutTermsPrivacy
Search
Star
Setup for Free
SupabaseS
Supabase•8mo ago•
3 replies
不瘦十斤不改名

Help: Mobile Reset Password Deep Link Not Triggering in Flutter (Web Works Fine)

Hi everyone! I'm having trouble getting the reset password deep link to work in my Flutter app using supabase_flutter.
🔧 Setup:
Flutter code:
await supabase.auth.resetPasswordForEmail(
  email,
  redirectTo: 'shu-dong://callback/reset-password',
);
AndroidManifest.xml:
<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <data android:scheme="shu-dong" android:host="callback"/>
</intent-filter>
await supabase.auth.resetPasswordForEmail(
  email,
  redirectTo: 'shu-dong://callback/reset-password',
);
AndroidManifest.xml:
<intent-filter>
  <action android:name="android.intent.action.VIEW" />
  <category android:name="android.intent.category.DEFAULT" />
  <category android:name="android.intent.category.BROWSABLE" />
  <data android:scheme="shu-dong" android:host="callback"/>
</intent-filter>

Supabase Dashboard → Redirect URLs:
I’ve added:
shu-dong://callback/*

OAuth login redirects work fine.
I can see logs like:
handle deeplink uri: shu-dong://callback/discord?code=...
But clicking the reset password link in the email opens the app, but nothing happens. I don’t see the any log at all. It seems like the deep link is not being handled or passed to the app.
Is there any difference in how resetPasswordForEmail deep links are handled compared to OAuth?
Does supabase_flutter not trigger the handleDeeplink callback for reset password links by default?
Any working example or recommendation for handling this flow manually?
Would really appreciate any insight or help! 🙏 Thanks!
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

Flutter Reset Password Problem
SupabaseSSupabase / help-and-questions
13mo ago
Deep link from password reset email not opening the app
SupabaseSSupabase / help-and-questions
2y ago
Password reset link not received
SupabaseSSupabase / help-and-questions
4y ago
Password reset not working on mobile
SupabaseSSupabase / help-and-questions
13mo ago