菜鸟教程小白 发表于 2022-12-13 15:52:42

ios - App Transport Security 不再适用于 iOS 11 Xcode 9


                                            <p><p>我一直在开发一个应用程序...由于禁用 ATS 的 iOS 11 更新不再起作用,我在 info.plist 中添加了以下内容</p>

<pre><code>&lt;key&gt;NSAppTransportSecurity&lt;/key&gt;
&lt;dict&gt;
&lt;key&gt;NSAllowsArbitraryLoads&lt;/key&gt;
&lt;true/&gt;
&lt;/dict&gt;
</code></pre>

<p>我无法使用域异常键,因为我正在从未知域下载图像。
以下是我尝试下载图片时得到的结果</p>

<pre><code>Task &lt;C3DC30F1-5869-46F6-ABA4-5E1EC8334FD8&gt;.&lt;0&gt; 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>&lt;key&gt;NSAppTransportSecurity&lt;/key&gt; &lt;dict&gt;
   &lt;key&gt;NSExceptionDomains&lt;/key&gt;
   &lt;dict&gt;
         &lt;key&gt;mydomain.com&lt;/key&gt;
         &lt;dict&gt;
             &lt;!--Include to allow subdomains--&gt;
             &lt;key&gt;NSIncludesSubdomains&lt;/key&gt;
             &lt;true/&gt;
             &lt;key&gt;NSExceptionRequiresForwardSecrecy&lt;/key&gt;
             &lt;false/&gt;
         &lt;/dict&gt;
   &lt;/dict&gt; &lt;/dict&gt;
</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]
查看完整版本: ios - App Transport Security 不再适用于 iOS 11 Xcode 9