qnetworkrequest Questions
4
Solved
I want to get the source (HTML) of a webpage, for example the homepage of StackOverflow.
This is what I've coded so far:
QNetworkAccessManager manager;
QNetworkReply *response = manager.get(QNetw...
Pleasing asked 25/7, 2014 at 23:34
3
Solved
I am trying to send a "PATCH" request to my firebase application.As far as I read QNetworkManager doesn't support "Patch" request.
How can I send "PATCH" request ?
Precipitant asked 3/12, 2015 at 12:10
1
Solved
U use QNetworkRequest to send post request. How can I get HTTP code of request? I send some request to server, on server I can see my request, but i have to check http code which server will return...
Suggestibility asked 7/3, 2016 at 20:7
2
I'm trying to maintain a persistent connection between client and Remote server using Qt. My sever side is fine. I'm doing my client side in Qt. Here I will be using QNetworkAccessManager for reque...
Evante asked 20/4, 2015 at 10:41
1
Is there any way to see the data that will be sent (or has been sent) during (or after) a call to QNetworkAccessManager::post(QNetworkRequest,QByteArray) on the client side?
In other words, I woul...
Lovelady asked 5/5, 2013 at 7:46
1
I'm using the following piece of code to make HTTPS requests with a server.
QNetworkRequest request;
//request.setSslConfiguration(QSslConfiguration::defaultConfiguration());
request.setUrl(QUrl(...
Cervix asked 10/9, 2010 at 10:20
1
© 2022 - 2024 — McMap. All rights reserved.