Quote Originally Posted by halvors View Post
Exemples please
Then the Newbie section is more suitable for you and there is an example in the docs:
Qt Code:
  1. QNetworkRequest request;
  2. request.setUrl(QUrl("http://qt.nokia.com"));
  3. request.setRawHeader("User-Agent", "MyOwnBrowser 1.0"); // not needed
  4.  
  5. QNetworkReply *reply = manager->get(request);
  6. connect(reply, SIGNAL(readyRead()), this, SLOT(slotReadyRead()));
  7. connect(reply, SIGNAL(error(QNetworkReply::NetworkError)),
  8. this, SLOT(slotError(QNetworkReply::NetworkError)));
  9. connect(reply, SIGNAL(sslErrors(QList<QSslError>)),
  10. this, SLOT(slotSslErrors(QList<QSslError>)));
To copy to clipboard, switch view to plain text mode 
More is hardly possible, only the mention of QNetworkReply -> QIODevice::readAll().