【Poco】HTTP 使用 POST 传输数据(JSON)

【Poco】HTTP post 传输数据

#include 
#include 
#include 
#include 
#include 
#include 

using namespace Poco::Net;

void PostJson()
{
    Poco::JSON::Object bodyObj;
    bodyObj.set("name", "Vinton");
    bodyObj.set("pwd", "Vinton");
    std::ostringstream ss;
    bodyObj.stringify(ss);
    std::string body;
    body = ss.str();

    Poco::URI uri("http://www.baidu.com/test"); // 借用百度测试,O(∩_∩)O哈哈~
    HTTPClientSession session(uri.getHost(), uri.getPort());
    session.setKeepAlive(true);

    // 创建 HTTP request
    HTTPRequest request(HTTPRequest::HTTP_POST,  uri.getPathAndQuery(), Poco::Net::HTTPMessage::HTTP_1_1);
    request.setContentType("application/json");
    request.add("Accept", "Agent-007");
    request.add("User-Agent", "xxxxoooo");
    request.setContentLength(body.length());
     // sendRequest() 只是将 HTTP头组建到 std::ostream并返回ostream,通过在返回的stream追加body来实现 HTTP Body 传输
    session.sendRequest(request) << body;

#if 1
    HTTPResponse resp;
    session.receiveResponse(resp); // 发送 request 的 stream 数据并读取响应数据返回
#else
	// 如果不需读取响应,在退出函数释放 session 时才会自动发送 request 的stream数据
#endif
}

你可能感兴趣的:(Poco)