重新验证后,页面只返回空白.它没有做下一步.
屏幕截图
解决方法
对于空白的重新验证页面问题,我能够通过执行以下三项操作来解决它:
第一件事 –
在GoogleSerivce-Info.plist文件中,确保将REVERSED_CLIENT_ID添加到项目via the URL types using this中.按照第二步的第一部分:向Xcode项目添加自定义URL方案.
第二件事 –
>在项目导航器中,选择蓝色项目图标
>选择功能
>打开背景模式
>选择背景提取
第三件事 –
>在验证电话号码之前,请致电PhoneAuthProvider.provider(auth:Auth.auth())
@IBAction func phoneButton(sender: UIButton) { // ***step 5*** PhoneAuthProvider.provider(auth: Auth.auth()) PhoneAuthProvider.provider().verifyPhoneNumber(phoneNumberTextField.text!,uiDelegate: nil) { (verificationID,error) in if let error = error { print(error.localizedDescription) return } guard let verificationId = verificationID else { return } // do something with verificationID } }