我正在尝试使用来自C ++应用程序的HTTP(没有HTML框)发送文件。服务器一直在回答Code 400 / Bad Request。 为了简单起见,我已经手动将文件内容更改为一个简单的字符串(稍后,我将需要上传真正的二进制文件)。
POST请求如下:
POST /post.php HTTP/1.0
Host: posttestserver.com
Accept: */*
Content-Type: multipart/form-data; boundary=BOUNDARY
--BOUNDARY
Content-Disposition: form-data; name="userfile"; filename="example.txt"
Content-Type:text/plain
123ABC
--BOUNDARY--
Connection: close
知道发生了什么事吗?