Hello.

I've got the next problem: it is needed to access a https page. It uses ssl encryption. How can I access that using QNetworkRequest, QNetworkAccessManager?

Most successful attempt was to set ssl default configuration to QNetworkRequest
Qt Code:
  1. QNetworkRequest request;
  2. QSslConfiguration config( QSslConfiguration::defaultConfiguration() );
  3. request.setSslConfiguration( config );
  4. QUrl url( messageHeader );
  5. request.setUrl( url );
  6.  
  7. // make a request
To copy to clipboard, switch view to plain text mode 

that was fine on one PC, but on another it loaded default configuration with no certificates at all. However it seems like I can get all the needed information, certificates and keys just trying to access the secured web page (example: https://facebook.com) How can I do that?