resetPasswordForEmail

Hi, I'm using Supabase for Flutter (v1.0.1), all functionality works fine, except resetPasswordForEmail. Here are some relevant code snippets:

Supabase supabase = await Supabase.initialize(
    url: _config.databaseUri,
    anonKey: _config.databaseAnonKey,
);
_supabaseClient = supabase.client;


and

await _supabaseClient.auth.resetPasswordForEmail(email);


Pretty much any other auth function works like a charm (our app also does signups, signins, database access, etc.), but resetPasswordForEmail always gives me a 500 from the server, "Unable to process request".

Is there a configuration I'm overlooking? Is this a problem specific to our account?

(I can probably make a minimal project to reproduce this issue, if anyone is interested)

Many thanks!
Was this page helpful?