有人知道我如何使QML WebView(快速2)在iOS上显示带有自签名证书的服务器上的页面吗?
我正在使用Qt 5.11.1。
到目前为止,我已经尝试过:
我尝试在info.plist中设置NSAppTransportSecurity选项(请参见iOS9 getting error “an ssl error has occurred and a secure connection to the server cannot be made”):
<key>NSAppTransportSecurity</key>
<dict>
<key>NSAllowsArbitraryLoads</key>
<true/>
<key>NSExceptionDomains</key>
<dict>
<key>(mydomain)</key>
<dict>
<key>NSExceptionRequiresForwardSecrecy</key>
<false/>
<key>NSIncludesSubdomains</key>
<true/>
<key>NSExceptionAllowsInsecureHTTPLoads</key>
<true/>
</dict>
</dict>
</dict>
WebView始终无法通过以下消息加载我的页面:“发生SSL错误,无法建立与服务器的安全连接。”
我可以使用Safari打开页面。