I have a webservice that I need to POST some data to using Qt. I figured that I can use a QByteArray when POSTing to the web service.
My question is, how can I forma
I used:
QByteArray postData; postData.append("param1=string&"); postData.append("param2=string");
So & instead of newline after each parameter.