私のプロジェクトはXcode 7.3で動作しています。Xcode 7.3:NSURLSession/NSURLConnection HTTPロードに失敗しました(kCFStreamErrorDomainSSL、-9802)
NSURLSession/NSURLConnection HTTP load failed (kCFStreamErrorDomainSSL, -9802)
エラーメッセージ:私はちょうどiはタイトルや情報としてエラーを得た要求プレゼント
The certificate for this server is invalid. You might be connecting to a >server that is pretending to be “ https://api.domain.com ” which >could put your confidential information at risk.
私は解決策を検索しますがなし。 するinfo.plistにこれらを追加
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
OR (私の現在の設定)
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>https://api.domain.com:9002</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSThirdPartyExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict>
</dict>
私が検索:
https://stackoverflow.com/a/32912578/291240
https://stackoverflow.com/a/36209583/291240
https://stackoverflow.com/a/34999957/291240
GETメソッドまたはすべての要求の呼び出しでのみ発生します。 –
GETとPOSTの両方が同じエラーです。 –
これは参考になる可能性があります[この投稿を参照](http://stackoverflow.com/questions/23241872/nsurlconnection-cfurlconnection-http-load-failed-kcfstreamerrordomainssl-9813)ありがとう。 –