gpt4 book ai didi

ios - 如何从我的 iphone 连接到我的 mac os 上的本地主机

转载 作者:行者123 更新时间:2023-11-28 06:55:44 26 4
gpt4 key购买 nike

我读了很多关于它的问题,但我仍然有问题。

当我使用本地主机并从我的模拟器中更正 NSAppTransportSecurity optinos 时,一切都是正确的。

现在我正在我的 iPhone 上进行调试。 iphone 和 mac 都连接到同一个网络。

我检查我的 mac 的 ip 地址

然后我将它添加到 NSAppTransportSecurity 中,如下所示:

  <key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>10.250.x.x</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.1</string>
</dict>
</dict>
</dict>

我仍然遇到错误:

 App Transport Security has blocked a cleartext HTTP (http://) resource load since it is insecure. Temporary exceptions can be configured via your app's Info.plist file.
error = Error Domain=NSURLErrorDomain Code=-1022 "The resource could not be loaded because the App Transport Security policy requires the use of a secure connection." UserInfo={NSUnderlyingError=0x7f904d300170 {Error Domain=kCFErrorDomainCFNetwork Code=-1022 "(null)"}, NSErrorFailingURLStringKey=http://10.250.x.x:8080/IVRServer/api/registration/register, NSErrorFailingURLKey=http://10.250.x.x:8080/IVRServer/api/registration/register, NSLocalizedDescription=The resource could not be loaded because the App Transport Security policy requires the use of a secure connection.}

我应该向我的 plist 添加任何其他内容吗?

请不要认为这个问题是重复的,因为我已经在我的 plist 中使用了正确的设置,并且它工作正常,但是当我将服务器更改为非本地主机时它不工作

我错过了什么?

最佳答案

如果你只是想绕过这个限制,允许所有加载:

<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>

这应该是可行的,因为大概您正在使用“本地主机”,因此不应该有任何安全问题。

关于ios - 如何从我的 iphone 连接到我的 mac os 上的本地主机,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33707923/

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