Firebase 电子邮件验证总是 return false 用户未验证。 iOS

Firebase email verification always return false user not verified. iOS

我正在实施 firebase 电子邮件验证,但是当用户收到一封电子邮件时,它会重定向到应用程序,这很好。当我尝试使用经过验证的电子邮件登录时 Auth.auth().currentUser?.isEmailVerified 总是 return 错误。下面是我的代码:

class ViewController: UIViewController {

@IBOutlet weak var emailTextField: UITextField!
@IBOutlet weak var signInBtn: UIButton!
var link: String!

override func viewDidLoad() {
    super.viewDidLoad()
    if let link = UserDefaults.standard.value(forKey: "Link") as? String{
        self.link = link
        signInBtn.isEnabled = true
    }
}

override func touchesBegan(_ touches: Set<UITouch>, with event: UIEvent?) {
    self.view.endEditing(true)
}

@IBAction func didTapSignInWithEmailLink(_ sender: AnyObject) {
    if let email = self.emailTextField.text {
        Auth.auth().signIn(withEmail: email, link: self.link) { (user, error) in
            if let error = error {
                print("\(error.localizedDescription)")
                return
            }
        }
    } else {
        print("Email can't be empty")
    }

    print(Auth.auth().currentUser?.email)
    if Auth.auth().currentUser?.isEmailVerified == true {
        print("User verified")
    } else {
        print("User not verified")
    }

}
@IBAction func didTapSendSignInLink(_ sender: AnyObject) {
    if let email = emailTextField.text {
        let actionCodeSettings = ActionCodeSettings()
        actionCodeSettings.url = URL(string: "https://example.firebaseapp.com")

        // The sign-in operation has to always be completed in the app.
        actionCodeSettings.handleCodeInApp = true
        actionCodeSettings.setIOSBundleID(Bundle.main.bundleIdentifier!)
        actionCodeSettings.setAndroidPackageName("com.example.android",
                                                 installIfNotAvailable: false, minimumVersion: "12")
        Auth.auth().sendSignInLink(toEmail: email, actionCodeSettings: actionCodeSettings) { error in
            if let error = error {
                print("\(error.localizedDescription)")
                return
            }
            print("Check your email for link")
        }
    } else {
        print("Email cant be empty")
    }
}
override func didReceiveMemoryWarning() {
    super.didReceiveMemoryWarning()
    // Dispose of any resources that can be recreated.
}


}

我找到了我们需要重新加载用户的解决方案,这将更新当前用户状态。在 didTapSignInWithEmailLink 按钮函数中调用 Auth.auth.currentUser.reload:

Auth.auth().currentUser?.reload(completion: { (error) in
            if error == nil{
                if let email = self.emailTextField.text {
                    Auth.auth().signIn(withEmail: email, link: self.link) { (user, error) in
                        if let error = error {
                            print("\(error.localizedDescription)")
                            return
                        }
                    }
                } else {
                    print("Email can't be empty")
                }

                print(Auth.auth().currentUser?.email)
                if Auth.auth().currentUser?.isEmailVerified == true {
                    print("User verified")
                } else {
                    print("User not verified")
                }
            } else {
                print(error?.localizedDescription)
            }
        })