gpt4 book ai didi

ios - “CFNetwork SSLHandshake failed (-9810) error in__connection__block_invoke_2:Connection interupted”是什么意思?

转载 作者:行者123 更新时间:2023-12-03 09:13:15 24 4
gpt4 key购买 nike

当我的iPhone被锁定时,为什么我在Objective c中遇到此错误并且功能不起作用。

最佳答案

这些错误代码的说明:

errSSLInternal              = -9810,    /* Internal error */

在此处检查错误代码:

https://opensource.apple.com/source/Security/Security-55179.13/libsecurity_ssl/Security/SecureTransport.h

如果您的应用程序尝试连接到任何不支持最新SSL技术(TLSv1.2)的HTTP服务器,则您的连接将失败,并出现类似的错误。

如果您尝试连接到仅具有TLS 1.0的主机(www.example.com)。

然后,您必须在 info.plist中设置以下键:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>www.example.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSTemporaryExceptionMinimumTLSVersion</key>
<string>TLSv1.0</string>
<key>NSTemporaryExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>

将HTTP服务器更新为最新的TLS版本。

希望这会有所帮助:)

资料来源: https://ste.vn/2015/06/10/configuring-app-transport-security-ios-9-osx-10-11/

关于ios - “CFNetwork SSLHandshake failed (-9810) error in__connection__block_invoke_2:Connection interupted”是什么意思?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43135599/

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