gpt4 book ai didi

ios - 没有 VPN 无法连接到 firebase

转载 作者:可可西里 更新时间:2023-11-01 02:00:32 25 4
gpt4 key购买 nike

我在我的 swift 应用程序中使用 firebase。

但是,由于我的国家(伊朗)未对 google firebase 进行制裁,因此如果没有 VPN,我的应用将无法运行。

我应该怎么做才能解决这个问题?

下面是我使用 firebase 进行用户注册的代码:

Auth.auth().createUser(withEmail: textFieldLoginEmail.text!, password: textFieldLoginPassword.text!) { (user, error) in
if user != nil
{
print("succes")
}
else
{
if let myerror = error?.localizedDescription
{
print(myerror)
}
else
{
print("error")
}
}
}

最佳答案

这不是您可以通过编程方式解决的问题。

A VPN创建一个从您的机器到位于世界某个地方的目标机器的私有(private)和加密网络 channel ,就好像您直接连接到不同的网络网络一样。

当您通过 VPN 连接时,您的政府可能使用的网络服务器可能无法识别您尝试访问的目标网站 (firebase),从而允许您通过连接。

当您未连接到 VPN 时,这些网络服务器会发现您正在连接到 firebase,它们会阻止您的连接。

在开发您的应用程序时,您应该继续使用 VPN。

关于ios - 没有 VPN 无法连接到 firebase,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46760332/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com