skip to Main Content

QT request https url, ok in windows ko in linux – Debian

I have the following code in QT that correctly get the webpage in Windows ( 7 x64 ) but not in Linux Debian 9.13 void Mycl::getdata() { QNetworkAccessManager *networkManager; networkManager = new QNetworkAccessManager(this); QString urlStr="https://......."); QUrl url(urlStr); QNetworkRequest request; request.setUrl(url);…

VIEW QUESTION
Back To Top
Search