WebView 6.3.2 and https
-
Hi everyone,
I'm using Qt 6.3.2 with a very small example of a WebView, trying to load "https://www.google.fr" or any other website using https.
Everytime, I get:qml: Webview: net::ERR_TIMED_OUT
The example I use is very minimalistic:
WebView { width: 640 height: 480 url: "https://www.google.fr" onLoadingChanged: function (webViewLoadRequest) { console.log("Webview: " + webViewLoadRequest.errorString) console.log("Webview: " + webViewLoadRequest.status) console.log("Webview: " + webViewLoadRequest.url) } }Thee minibrowser example from Qt also doesn't work with websites using https.
I thought it was because of my OpenSSL libs, so I pasted the OpenSSL libs provided by Qt (in the MaintenanceTool) in the release folder, but it still doesn't work. I'm using the version 1.1.1j of the SSL libs (libcrypto and libssl).
Would someone know what I need to do to make the WebView with websites using https?
-
Hello again,
Does anyone have any clue about this issue? Is it a known issue?