web-dev-qa-db-ja.com

iOS9-HTTP接続エラー

Xcodeを更新すると3つのエラーが発生する

1- 安全ではないため、App Transport SecurityはクリアテキストHTTP(http://)リソースのロードをブロックしました。一時的な例外は、アプリのInfo.plistファイルを介して設定できます。

2- CFNetwork SSLHandshake failed(-9824)

3- NSURLSession/NSURLConnection HTTPロード失敗(kCFStreamErrorDomainSSL、-9824)

私は試した:

<key>NSAppTransportSecurity</key>
<dict>
  <key>NSExceptionDomains</key>
  <dict>
    <key>yourdomain.com</key>
    <dict>
      <!--Include to allow subdomains-->
      <key>NSIncludesSubdomains</key>
      <true/>
      <!--Include to allow HTTP requests-->
      <key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
      <true/>
      <!--Include to specify minimum TLS version-->
      <key>NSTemporaryExceptionMinimumTLSVersion</key>
      <string>TLSv1.1</string>
    </dict>
  </dict>
</dict>

そして

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

しかし、それらは機能しませんでした。誰かが私を助けてくれますか?ありがとうございました。

12
Ibrahim BOLAT

Project Navigatorからプロジェクトの名前をクリックします。 enter image description here

これで、右側にプロジェクトの[全般]タブが表示されます。[情報]タブを選択してください enter image description here 税関のiOSターゲットプロパティを展開 enter image description here 新しいタイプを追加し、NSAppTransportSecurityとして名前を付け、Dictionaryとして入力します。このテキストで変換されますApp Transport Security Settings enter image description here 内部で新しいアイテムを追加し、NSAllowsArbitraryLoadsという名前を付け、ブール値として入力し、値をYESにします。 enter image description here

Appleの詳細については、フォーラムのこのスレッドを参照してください... info.plistにエントリを追加してください

https://forums.developer.Apple.com/message/5857#5857

また、WWDCのセッション711を参照してください。 https://developer.Apple.com/videos/wwdc/2015/?id=711

11
umairhhhs

ホワイトリストに追加

enter image description here httpsにドメイン名が使用されている場合でも、間違ったドメイン名を接続すると、ホワイトリストに追加されました。

3
EchoXuan