ios - App Transport Security 不再适用于 iOS 11 Xcode 9
<p><p>我一直在开发一个应用程序...由于禁用 ATS 的 iOS 11 更新不再起作用,我在 info.plist 中添加了以下内容</p>
<pre><code><key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
</dict>
</code></pre>
<p>我无法使用域异常键,因为我正在从未知域下载图像。
以下是我尝试下载图片时得到的结果</p>
<pre><code>Task <C3DC30F1-5869-46F6-ABA4-5E1EC8334FD8>.<0> HTTP load failed (error code: -1005 )
NSURLConnection finished with error - code -1005
</code></pre></p>
<br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
<p><p>我知道 IOS 11 不再支持以下内容:</p>
<ul>
<li>RC4 3DES-CBC AES-CBC</li>
<li>MD5 SHA-1</li>
<li><2048 位 RSA Pubkey- 到服务器的所有 TLS 连接</li>
<li>http://</li>
<li>SSLv3</li>
<li>TLS 1.0</li>
<li>TLS 1.1</li>
</ul>
<p>添加以下我们可以绕过ATS(App Transport Security)错误:</p>
<pre><code><key>NSAppTransportSecurity</key> <dict>
<key>NSExceptionDomains</key>
<dict>
<key>mydomain.com</key>
<dict>
<!--Include to allow subdomains-->
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
</dict>
</dict> </dict>
</code></pre>
<p>引用链接:<a href="https://stackoverflow.com/questions/46316604/ios-11-ats-app-transport-security-no-longer-accepts-custom-anchor-certs" rel="noreferrer noopener nofollow">iOS 11 ATS (App Transport Security) no longer accepts custom anchor certs?</a> </p></p>
<p style="font-size: 20px;">关于ios - App Transport Security 不再适用于 iOS 11 Xcode 9,我们在Stack Overflow上找到一个类似的问题:
<a href="https://stackoverflow.com/questions/47300932/" rel="noreferrer noopener nofollow" style="color: red;">
https://stackoverflow.com/questions/47300932/
</a>
</p>
页:
[1]