本文介绍了如何从Firebase中的用户帐户中删除电话号码?的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!
问题描述
我猜您必须重新验证才能删除电话号码,因为目前我正尝试这样做:
I'm guessing you have to do something with re authing to remove the phone number because at the moment I am trying to do this:
const user = firebase.auth().currentUser;
user.updateProfile({phoneNumber: null}).then(() => { alert('success') }).catch(err => {alert(err)})
这不起作用,但是我遇到了成功障碍
this is not working, but I am getting the success block
推荐答案
要从用户删除电话号码帐户,只需取消链接:
To remove a phone number account from a user, simply unlink it:
firebase.auth().currentUser.unlink(firebase.auth.PhoneAuthProvider.PROVIDER_ID);
这篇关于如何从Firebase中的用户帐户中删除电话号码?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!