I have a problem. I\'ve made a Qt application which is connecting to a https site. On my working machine, everything works fine. When I try to test my application on a clean
Have a look at this Qt bug
[This is padding for SO :D]
I was facing the same issue on Mac with Qt 5.5 and 5.6. When I upgraded to 5.7 it is solved. Hope it may help if you are still facing this issue.
You could ignore certificate verify using QSslConfiguration::setPeerVerifyMode():
QSslConfiguration conf = request.sslConfiguration();
conf.setPeerVerifyMode(QSslSocket::VerifyNone);
request.setSslConfiguration(conf);