PhoneCredential必须是有效的电话凭证

时间:2019-01-28 19:00:02

标签: firebase react-native firebase-authentication

嗨,我正在尝试使用以下方法设置用户的电话号码,并且出现以下错误“ updatePhoneNumber失败:第一个参数“ phoneCredential”必须是有效的电话凭据。”我尝试了不同的建议吗?

_addPhone = ()  =>{
firebase.auth().currentUser.updatePhoneNumber({
  phoneNumber: '+441234567890' // Fake for question 
}).then(function(userRecord) {
  // See the UserRecord reference doc for the contents of userRecord.
  console.log("Successfully updated user", userRecord.toJSON());
})
  .catch(function(error) {
    console.log("Error updating user:", error);
  });
}

1 个答案:

答案 0 :(得分:0)

updatePhoneNumber方法只能接受在验证电话号码后firebase将创建的有效凭据。

Similar question on the subject