Check out the "HTTP Client" example.
on the QNetworkReply::finished signal call reply->readAll() if the data is human readable you can do something like
Qt Code:
QString replyString; if (reply->isReadable()) { }To copy to clipboard, switch view to plain text mode
Bookmarks