我在Flutter iOS应用程序上的手机认证有问题。在Android上一切正常。
当我尝试使用电话号码登录时,我会在网站上重定向,但当它返回到应用程序时,会发生错误,显示[firebase_auth/web-internal-error] unable to load external reCAPTCHA dependencies
。
我在我的xCode项目中添加了Background Mode
功能,模式为Background Fetch
和Remote Notifications
,还添加了自定义URL方案,如下所示:
<key>CFBundleURLTypes</key>
<array>
<dict>
<key>CFBundleTypeRole</key>
<string>Editor</string>
<key>CFBundleURLSchemes</key>
<array>
<string>XXX (client Id is right)</string>
</array>
</dict>
</array>
我需要如何修复此错误?
1条答案
按热度按时间tjvv9vkg1#
尝试将以下代码添加到
ios/Runner/AppDelegate.swift
文件中: