我正在创建一个使用PhoneAuth
对用户进行身份验证的应用程序。在我的应用程序中,我具有一个允许用户将Email
添加到他的帐户的功能,但这并不意味着我使用电子邮件和密码对用户进行身份验证,我只想将电子邮件添加到他/她的帐户(auth.auth()。currentUser )。
最初,我让用户在文本字段中添加他/她的电子邮件,然后开始从他/她的设备注销用户以reauthentication
,否则,我无法使用auth.updateEmail()
更新用户的电子邮件。但是可悲的是,在我调用func updateEmail()
之后,该凭证始终过期。
这就是我登录用户和更新电子邮件的方式
let credential = PhoneAuthProvider.provider().credential(withVerificationID: verficationID, verificationCode: code)
Auth.auth().signInAndRetrieveData(with: credential) { (result, error) in
guard let result = result else {
completion(false)
return
}
if error == nil {
guard let user = Auth.auth().currentUser else {
return
}
if UserDefaults.standard.getUserUpdatedEmail() {
user.reauthenticate(with: credential, completion: { (error) in
if error == nil {
user.updateEmail(to: newEmail, completion: { (error) in
if error == nil {
UserDefaults.standard.setUserUpdatedEmail(value: false)
completion(true)
//return true
} else {
completion(false)
//return false
print("Error validate email ",error?.localizedDescription ?? "")
}
})
} else {
completion(false)
// return false
print("Error reauthntication email ",error?.localizedDescription ?? "")
}
})
} else {
print("User is signed in \(result.user)")
print("This is userID \(result.user.uid)")
completion(true)
}
} else {
if let error = error {
print("Error during verification \(error.localizedDescription)")
}
completion(false)
}
}
我不是为什么凭证过期太快?我无法弄清楚如何使用PhoneAuthCredential更新用户电子邮件。还有其他技术吗?
答案 0 :(得分:0)
您正在尝试重新使用同一电话凭据(您首先使用它来登录)。电话凭证仅一次使用。如果您要在登录后立即更新电子邮件,则无需重新验证。但是,如果您尝试在一段时间后更新电子邮件,则需要发送新的SMS代码以重新进行身份验证。