使用cpp-netlib发送HTTP POST请求

时间:2015-03-12 10:07:11

标签: c++ httprequest cpp-netlib

已更新

我使用cpp-netlib(v0.11.0)发送HTTP请求。

以下代码使用给定正文发送HTTP POST请求。

client httpClient;

try
{
   uri::uri url;
   url << uri::scheme("http")
       << uri::host(m_hostname)
       << uri::port(m_port)
       << uri::path(m_path);

   // create a request instance and configure the headers
   client::request request(url);
   request << header("Connection", "close");
   request << header("Content-Type", "application/x-www-form-urlencoded");

   // send the request
   client::response response = httpClient.post(request, "foo=bar");
}

catch (std::exception& ex)
{
   ...
}

但是,以下代码会导致错误请求。

client httpClient;

try
{
   uri::uri url;
   url << uri::scheme("http")
       << uri::host(m_hostname)
       << uri::port(m_port)
       << uri::path(m_path)
       << uri::query("foo", "bar");

  // create a request instance and configure the headers
   client::request request(url);
   request << header("Connection", "close");
   request << header("Content-Type", "application/x-www-form-urlencoded");
   request << body("foo=bar");

   // send the request
   client::response response = httpClient.post(request);
}

catch (std::exception& ex)
{
   ...
}

请有人解释我在第二个例子中做错了什么,哪个是首选选项。

1 个答案:

答案 0 :(得分:4)

然后你应该添加如下内容:

// ...
request << header("Content-Type", "application/x-www-form-urlencoded");
request << body("foo=bar");

否则你不能在任何地方指定身体。

编辑:还尝试添加类似:

的内容
std::string body_str = "foo=bar";
char body_str_len[8];
sprintf(body_str_len, "%u", body_str.length());
request << header("Content-Length", body_str_len);

 request << body(body_str);