supabase/supabase-flutter

Signup: Response is empty for EmailValidation

vHanda opened this issue · 4 comments

Bug report

When using signup(username, password) the response object fetched has all its values as null. This is apparently supposed to indicate that the user now needs to validate the email. This is super cryptic, and took me some time to figure out.

To Reproduce

var auth = Supabase.instance.client.auth;
var result = await auth.signUp(
    'test@gitjournal.io',
    'hellohello',
    options: AuthOptions(redirectTo: 'gitjournal-identity://callback'),
  );
  print(result);
  if (result.data != null) {
    print('result not null');
    print('done?');
  }
  print('data: ${result.data}');
  print('rawData: ${result.rawData}');
  print('user: ${result.user}');
  print('url: ${result.url}');
  print('provider: ${result.provider}');
  print('Error: ${result.error}');
  print('Error Message: ${result.error?.message}');
},
flutter: Instance of 'GotrueSessionResponse'
flutter: data: null
flutter: rawData: null
flutter: user: null
flutter: url: null
flutter: provider: null
flutter: Error: null
flutter: Error Message: null

Expected behavior

Some easy way of figuring out that email validation is now required. One option would be to add a bool emailValidationRequired in the GotrueSessionResponse. Please let me know what solution would be acceptable.

I might / might-not provide a PR once the solution is agreed on. I don't want to commit myself.

But what data should it provide?

But what data should it provide?

Right now, my code is -

if (result.data == null && result.error == null) {
     // Show message to check email
}

For me, this works, but isn't very intuitive.

I would prefer something like this -

if (result.emailValidationRequired) {
     // Show message to check email
}

I think this is a valid request. I personally have struggled in a similar way, and I feel like a lot of people will especially for those who come from Firebase.

If we would to implement something like what you have proposed, we would want to be aligned with the supabase-js client, so let me open an issue over there and discuss it with the team.

This has been resolved as indicated in the following issue.

supabase/auth#227

If there's a valid date in the user object returned on the email_confirmed_at and/or phone_confirmed_at fields, then the user has confirmed their email and/or phone number.