使用 restbed C++ 发送 POST multipart/form-data 请求

Send POST multipart/form-data request using restbed C++

我正在使用 restbed 库开发 C++ 休息客户端,它将使用 POST 请求发送 base64 编码图像。 到目前为止我写的代码是:

auto request = make_shared< Request >(Uri("http://127.0.0.1:8080/ProcessImage"));
request->set_header("Accept", "*/*");
request->set_header("Content-Type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
request->set_header("Cache-Control", "no-cache");
request->set_method("POST");
string test = "------WebKitFormBoundary7MA4YWxkTrZu0gW"
    "Content-Disposition:form-data;name=\"image\""
    ""
    "testMessage"
    "------WebKitFormBoundary7MA4YWxkTrZu0gW--";
request->set_body(imgContent);
auto response = Http::sync(request)

我不确定应该如何设置请求正文。我尝试使用简单的 image="blabla" 以及我从邮递员那里获取的长版本消息。 但在每种情况下,我都会收到 "error 400 Bad request" 答复。

更新: 也使用此版本的代码进行了测试,但没有成功:

auto request = make_shared< Request >(Uri("http://127.0.0.1:8080/ProcessImage"));
    request->set_header("Accept", "*/*");
    request->set_header("Host","127.0.0.1:8080");
    request->set_method("POST");
    request->set_header("Content-Type", "multipart/form-data; boundary=----WebKitFormBoundary7MA4YWxkTrZu0gW");
    request->set_header("Cache-Control", "no-cache");
    string imgContent = "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n"
        "Content-Disposition: form-data; name=\"image\"\r\n"
        "\r\n"
        "test\r\n"
        "------WebKitFormBoundary7MA4YWxkTrZu0gW--\r\n";
    request->set_body(imgContent
    auto response = Http::sync(request);

我从服务器得到的响应:

    *** Response ***
Status Code:    400
Status Message: BAD REQUEST
HTTP Version:   1.0
HTTP Protocol:  HTTP
Header 'Content-Length' > '192'
Header 'Content-Type' > 'text/html'
Header 'Date' > 'Sun, 04 Feb 2018 21:09:45 GMT'
Header 'Server' > 'Werkzeug/0.14.1 Python/3.5.4'
Body:<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2 Final//EN">
<title>400 Bad Request</title>
<h1>Bad Request</h1>
<p>The browser (or proxy) sent a request that this server could not understand.</p>
²²²²∩x...

我还在服务器端(使用 python flask)添加了: encoded_img = request.form.get('image') 并打印字符串。打印结果为:"None"

您的 body 内容在每行末尾缺少明确的换行符。 C++ 不会自动为您插入它们。

此外,如果您要发送 base64 数据,您还应该包含一个 Content-Transfer-Encoding header。

试试这个:

string imgContent = "------WebKitFormBoundary7MA4YWxkTrZu0gW\r\n"
    "Content-Disposition: form-data; name=\"image\"\r\n"
    "Content-Transfer-Encoding: base64\r\n"     
    "\r\n"
    "<base64 image data here>\r\n"
    "------WebKitFormBoundary7MA4YWxkTrZu0gW--\r\n";
request->set_body(imgContent);