initfusion

Results 9 comments of initfusion

Hi @cynthiajoan, this doc is not enough for solving conflicts. Because the credentials which I linking is having an existing account so we have to delete the new account first....

Hi @cynthiajoan Yes, I have done that way but after doing signInWithCredantial the prevUser which I have grabbed previously is also changed to the new user. I think its sync...

Hi This is I am trying ``` var credential = EmailAuthProvider.GetCredential(email, password); auth.CurrentUser.LinkWithCredentialAsync(credential).ContinueWithOnMainThread(task => { if (task.IsCanceled) { Debug.Log("Cancel"); } if (task.IsFaulted) { Debug.Log("Faulted"); var currentUser = auth.CurrentUser; otherAuth.SignInWithCredentialAsync(credential).ContinueWithOnMainThread(linkTask =>...

Hi @patm1987, Yes, I can cache the individual fields but I need the previous user to link the user. Without a previous user, I can't call the LinkWithCredantials. ![Screenshot 2019-06-21...

Hi @patm1987 Yes, it's not the case, Link account is working properly when there is no error when link. But if there is an error (ie: if the credential which...

Hi @stewartmiles Thanks for understanding my problem. I was also tried with multiple Firebase objects but still not able to get or cache the current user's auth token. Here is...

Hi @stewartmiles Thank you very much, using a secondary app solve my problem in all the methods except phone auth. Now I am facing a new issue when link phone...

Hi @stewartmiles This is not a proper way, because I need to `VerifyPhoneNumber()` 3 times. - First, When linking the account first time. - Second, When sigh in and delete...

Hi @stewartmiles, May I know ETA for this issue?