菜鸟教程小白 发表于 2022-12-12 18:57:10

ios - react native Webview NSURLErrorDomain 1022


                                            <p><p>我正在尝试在 WebView 组件中显示自定义 url(它们不是异常(exception)域中的那些,它们是其他域,我并不总是知道它们的域),但似乎无法修复 Apple 的错误 1022 : <code>无法加载资源,因为应用传输安全策略要求使用安全连接</code></p>

<p>我的 <code>Info.plist</code> 文件有以下内容:</p>

<pre><code>&lt;key&gt;NSAppTransportSecurity&lt;/key&gt;
&lt;dict&gt;
    &lt;key&gt;NSAllowsArbitraryLoads&lt;/key&gt;
    &lt;true/&gt;
    &lt;key&gt;NSExceptionDomains&lt;/key&gt;
    &lt;dict&gt;
      &lt;key&gt;akamaihd.net&lt;/key&gt;
      &lt;dict&gt;
            &lt;key&gt;NSExceptionRequiresForwardSecrecy&lt;/key&gt;
            &lt;false/&gt;
            &lt;key&gt;NSIncludesSubdomains&lt;/key&gt;
            &lt;true/&gt;
      &lt;/dict&gt;
      &lt;key&gt;facebook.com&lt;/key&gt;
      &lt;dict&gt;
            &lt;key&gt;NSExceptionRequiresForwardSecrecy&lt;/key&gt;
            &lt;false/&gt;
            &lt;key&gt;NSIncludesSubdomains&lt;/key&gt;
            &lt;true/&gt;
      &lt;/dict&gt;
      &lt;key&gt;fbcdn.net&lt;/key&gt;
      &lt;dict&gt;
            &lt;key&gt;NSExceptionRequiresForwardSecrecy&lt;/key&gt;
            &lt;false/&gt;
            &lt;key&gt;NSIncludesSubdomains&lt;/key&gt;
            &lt;true/&gt;
      &lt;/dict&gt;
      &lt;key&gt;needl-app.com&lt;/key&gt;
      &lt;dict&gt;
            &lt;key&gt;NSIncludesSubdomains&lt;/key&gt;
            &lt;true/&gt;
            &lt;key&gt;NSTemporaryExceptionAllowsInsecureHTTPLoads&lt;/key&gt;
            &lt;true/&gt;
      &lt;/dict&gt;
&lt;/dict&gt;
&lt;/dict&gt;
</code></pre>

<p>我做错了什么?</p></p>
                                    <br><hr><h1><strong>Best Answer-推荐答案</ strong></h1><br>
                                            <p><p>尝试将您的域 key 替换为:</p>

<p><code><key>www.akamaihd.net</key>
</code></p>

<p>和</p>

<p><code><key>www.faceboook.com</key>
</code>
这似乎为我解决了这个问题。此外,对于 facebook,您可以将其删除,只要在您的 WebView 中路由到 <a href="https://www.facebook.com" rel="noreferrer noopener nofollow">https://www.facebook.com</a> </p></p>
                                   
                                                <p style="font-size: 20px;">关于ios -reactnative Webview NSURLErrorDomain 1022,我们在Stack Overflow上找到一个类似的问题:
                                                        <a href="https://stackoverflow.com/questions/36043683/" rel="noreferrer noopener nofollow" style="color: red;">
                                                                https://stackoverflow.com/questions/36043683/
                                                        </a>
                                                </p>
                                       
页: [1]
查看完整版本: ios - react native Webview NSURLErrorDomain 1022