-
Notifications
You must be signed in to change notification settings - Fork 4.1k
Closed
Labels
plugin: authresolution: fixedA fix has been merged or is pending merge from a PR.A fix has been merged or is pending merge from a PR.type: bugSomething isn't workingSomething isn't working
Description
If I use a hypothetical user to re-authenticate,
AuthCredential credential = EmailAuthProvider.getCredential(
email: "[email protected]", password: "password" );
and then pass this credential to:
user.reauthenticateWithCredential(credential)
.whenComplete(() async {
print('complete');
})
.catchError((e) {
print(e);
});
where user was retrieved previously (user = await _auth.currentUser();)
The request returns:
I/BiChannelGoogleApi( 6616): [FirebaseAuth: ] getGoogleApiForMethod() returned Gms: com.google.firebase.auth.api.internal.zzao@64242b7
I/flutter ( 6616): completed
I/flutter ( 6616): PlatformException(FirebaseException, An internal error has occurred. [ 7: ], null)
Metadata
Metadata
Assignees
Labels
plugin: authresolution: fixedA fix has been merged or is pending merge from a PR.A fix has been merged or is pending merge from a PR.type: bugSomething isn't workingSomething isn't working