我正在尝试在 Web View 组件中显示自定义 url(它们不是异常(exception)域中的那些,它们是其他域,我并不总是知道它们的域),但似乎无法修复 Apple 的错误 1022 : 无法加载资源,因为应用传输安全策略要求使用安全连接
我的 Info.plist 文件有以下内容:
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>akamaihd.net</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>facebook.com</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>fbcdn.net</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
</dict>
<key>needl-app.com</key>
<dict>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSTemporaryExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
我做错了什么?
Best Answer-推荐答案 strong>
尝试将您的域 key 替换为:
www.akamaihd.net
和
www.faceboook.com
这似乎为我解决了这个问题。此外,对于 facebook,您可以将其删除,只要在您的 WebView 中路由到 https://www.facebook.com
关于ios - react native Webview NSURLErrorDomain 1022,我们在Stack Overflow上找到一个类似的问题:
https://stackoverflow.com/questions/36043683/
|