gpt4 book ai didi

iOS 应用程序传输安全异常不起作用

转载 作者:行者123 更新时间:2023-11-29 12:11:16 25 4
gpt4 key购买 nike

我正在尝试连接到 iOS 9.1 上的自签名 HTTPS 服务器。

我正在使用:

[NSURLConnection sendSynchronousRequest:request returningResponse:nil error:&error];

我收到一条错误消息,指出证书无效:

Error Domain=NSURLErrorDomain Code=-1202 "<French error saying the certificate is invalid" 
UserInfo=
{NSURLErrorFailingURLPeerTrustErrorKey=<SecTrustRef: 0x13c768140>,
NSLocalizedRecoverySuggestion=<French recovery suggestion asking if the user wants to connect anyway>, _kCFStreamErrorDomainKey=3, _kCFStreamErrorCodeKey=-9813, NSErrorPeerCertificateChainKey=<CFArray 0x13d82ffe0 [0x1a1242b68]>

我已经尝试添加所有可能的传输安全异常(exception),我目前的尝试是:

    <key>NSAppTransportSecurity</key>
<dict>
<key>NSExceptionDomains</key>
<dict>
<key>mydomain.org</key>
<dict>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>

我也试过 NSAllowsArbitraryLoads 但即使这样也行不通。我有几个 .plist 文件(cocoapods 和测试),我认为它在正确的文件中(App/Supporting Files/Info.plist)。

知道哪里出了问题吗?

最佳答案

你需要像这样在最后加上这个

<array>
<string>UIInterfaceOrientationPortrait</string>
<string>UIInterfaceOrientationLandscapeLeft</string>
<string>UIInterfaceOrientationLandscapeRight</string>
</array>
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>

关于iOS 应用程序传输安全异常不起作用,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33387407/

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