I have kind of a n00b problem, I can\'t seem to make HTTP GET requests from my Qt Code...
Here is the code supposed to work:
void MainWindow::request
If reply->error() = 0, it means the request was successful. In fact, your code seems right to me, and the only thing I would do differently is to read the data. Try with this:
reply->error()
QByteArray rawData = reply->readAll(); QString textData(rawData); qDebug() << textData;