Poco HTTPClientSession 添加 headers 到 HTTPRequest

Poco HTTPClientSession adding headers to HTTPRequest

尝试使用 JSON 将 POST 方法发送到服务器。但是,服务器还需要 model, platform and platform version 作为 headers 来请求。如何将这些 headers 添加到 HTTPRequest。在 Postman,我可以将它添加到 Headers 选项卡中。例如。 Model: Redmi 4 Platform: android。随意编辑以使其他人清楚。 下面是 HTTPRequest 创建的我的代码:

Poco::JSON::Object obj;
obj.set("login", "log123");

obj.set("password","pas123");

Poco::Net::HTTPClientSession session("http://hostAddress", 
    80); //giving host name and port number
Poco::Net::HTTPRequest request(Poco::Net::HTTPRequest::HTTP_POST,
        "http://requestAddress","1.1"); //initializing request body
Poco::Net::HTTPResponse response;


std::stringstream ss;
obj.stringify(ss);

request.setContentType("application/json");
request.setContentLength(ss.str().length());

std::ostream& oStream = session.sendRequest(request);// sends request, returns open stream

obj.stringify(oStream);

std::istream& iStream = session.receiveResponse(response);

我试图在 https://pocoproject.org/docs/Poco.Net.HTTPRequest.html. https://pocoproject.org/docs/Poco.Net.HTTPMessage.html 上查找一些信息。但是没有结果。

只有一种解决方案。它可以帮助别人。

request.add("string:key","string:value") //In order to add headers to request. 

例如:

request.add("X-Make","Xiaomi");
request.add("X-Model","Redmi 4");
request.add("X-Platform","android");
request.add("X-Platform-Version","6.0.1");

对我有用。