I need to make an HTTP POST request to a server from my Qt application.
The POST request would contain a list of named values, i.e. key/value pairs. They will be mostly
You can use QNetworkAccessManager together with QNetworkRequest to post http requests. If you want to send key/value pairs, consider using JSON.