Reputation: 7688
I am developing ionic app using angularfire2, I used google signin to login user and used phone auth to link phone number to user.
I linked phone number, now the scenario is to update mobile number. I searched on internet but I didn't found any suitable documentation to update mobile number using angularfire2. But I found that there is one method to update phone number i.e. updatePhoneNumber
, but I am not sure with its parameters.
Can anyone help me with this to pass correct parameters to this method and update user's phone number.
Upvotes: 0
Views: 798
Reputation: 599621
The User.updatePhoneNumber()
method takes a phoneCredential
parameter, which you get from the ConfirmationResult
that is sent with the verification text.
Upvotes: 1