繁体   English   中英

Firebase 电话身份验证 reCAPTCHA 验证在某些设备上不起作用

[英]Firebase Phone Auth reCAPTCHA verification not working on some devices

我正在使用 Firebase Auth 的 Firebase UI Phone Authentication 最新版本构建 iOS 应用程序。

当我尝试在我的设备上使用电话号码执行登录时,它似乎不需要 reCAPTCHA 验证并且可以正常工作。

相反,当我尝试在其他设备上运行该应用程序时,它需要 reCAPTCHA 验证,但突然当完成验证您不是机器人时,我看到屏幕保持空白且无法工作。

我在 Stack Overflow 上搜索了几个答案,并提到了在后台模式中启用某些内容(我启用了远程通知、后台获取、IP 语音、音频、Airplay...)。 他们在 GoogleService 文件中提到的关于REVERSED_CLIENT_ID其他事情我必须将该 URL 复制到 URL Schemes,当然我已经复制了它。

以下是我的一些委托功能:

func application(_ application: UIApplication, didReceiveRemoteNotification userInfo: [AnyHashable : Any], fetchCompletionHandler completionHandler: @escaping (UIBackgroundFetchResult) -> Void) {
    let firebaseAuth = Auth.auth()
    if (firebaseAuth.canHandleNotification(userInfo)){
        print("User infor ",userInfo)
        return
    }
}

func application(_ application: UIApplication, didRegisterForRemoteNotificationsWithDeviceToken deviceToken: Data) {

    let token = deviceToken.hexString
    print("====== This is device token ",deviceToken)

    let firebaseAuth = Auth.auth()
    // I used to set type .unknown to .prod as well and it doesn't work
    firebaseAuth.setAPNSToken(deviceToken, type: .unknown)
    InstanceID.instanceID().instanceID { (result, error) in
        if let error = error {
            NSLog("Error getting instance ID ", error.localizedDescription)
        } else if let result = result {
            Messaging.messaging().apnsToken = deviceToken
            UserDefaults.standard.setFCMToken(value: result.token)
        }
    }
    print("=============== Device token",deviceToken.description)
    if let uuid = UIDevice.current.identifierForVendor?.uuidString {
        print(uuid)
    }
    UserDefaults.standard.setValue(token, forKey: "ApplicationIdentifier")
    UserDefaults.standard.synchronize()


}

还有什么我错过的吗? 为什么它在其他 iOS 设备上不起作用?? 为什么需要 reCAPTCHA 验证,然后验证后屏幕保持空白?

在您要求 VerificationID 之前输入以下代码。

Auth.auth().settings?.isAppVerificationDisabledForTesting = true

检查文档

我不确定您运行的是哪个 iOS 版本,但 iOS 13 的 reCAPTCHA 存在问题,但尚未解决

https://github.com/firebase/firebase-ios-sdk/issues/3706

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM