BOOST ASIO POST HTTP REQUEST-标头和正文
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了BOOST ASIO POST HTTP REQUEST-标头和正文相关的知识,希望对你有一定的参考价值。
我一直试图使它工作几天,但是我不断从服务器收到400错误。
[基本上,我想做的是将HTTP POST请求发送到需要JSON请求主体和几个属性的服务器。
这些是我当前正在使用的库
更新--- 13/7/23 10:00 am刚刚注意到我正在使用TCP而不是HTTP,不确定是否会影响HTTP调用多少,但是我找不到使用纯HTTP和BOOST的客户端的任何示例: :ASIO
#include <iostream>
#include <istream>
#include <ostream>
#include <string>
#include <boost/asio.hpp>
#include <sstream>
#include <boost/property_tree/ptree.hpp>
#include <boost/property_tree/json_parser.hpp>
using boost::property_tree::ptree; using boost::property_tree::read_json; using boost::property_tree::write_json;
using boost::asio::ip::tcp;
设置代码
// Get a list of endpoints corresponding to the server name.
tcp::resolver resolver(io_service);
tcp::resolver::query query(part1, "http");
tcp::resolver::iterator endpoint_iterator = resolver.resolve(query);
// Try each endpoint until we successfully establish a connection.
tcp::socket socket(io_service);
boost::asio::connect(socket, endpoint_iterator);
// Form the request. We specify the "Connection: close" header so that the
// server will close the socket after transmitting the response. This will
// allow us to treat all data up until the EOF as the content.
boost::asio::streambuf request;
std::ostream request_stream(&request);
JSON BODY
ptree root, info;
root.put ("some value", "8");
root.put ( "message", "value value: value!");
info.put("placeholder", "value");
info.put("value", "daf!");
info.put("module", "value");
root.put_child("exception", info);
std::ostringstream buf;
write_json (buf, root, false);
std::string json = buf.str();
头和连接请求
request_stream << "POST /title/ HTTP/1.1
";
request_stream << "Host:" << some_host << "
";
request_stream << "User-Agent: C/1.0";
request_stream << "Content-Type: application/json; charset=utf-8
";
request_stream << json << "
";
request_stream << "Accept: */*
";
request_stream << "Connection: close
";
// Send the request.
boost::asio::write(socket, request);
我放置了占位符值,但是如果您发现我的代码中跳出的所有内容都不起作用,请让我知道我不知道为什么我不断收到400个错误的请求。
有关钻机的信息
C ++
WIN7
视觉工作室
尽管此问题非常古老,但我想为面临HTTP POST类似问题的用户发布此答案。
服务器向您发送的HTTP 400表示“错误请求”。这是因为您形成请求的方式有些错误。
以下是发送包含JSON数据的POST请求的正确方法。
#include<string> //for length()
request_stream << "POST /title/ HTTP/1.1
";
request_stream << "Host:" << some_host << "
";
request_stream << "User-Agent: C/1.0
";
request_stream << "Content-Type: application/json; charset=utf-8
";
request_stream << "Accept: */*
";
request_stream << "Content-Length: " << json.length() << "
";
request_stream << "Connection: close
"; //NOTE THE Double line feed
request_stream << json;
每当您通过POST请求发送任何数据(json,字符串等)时,请确保:
((1) 内容长度:是准确的。
((2)您将数据放在请求的末尾并带有行距。
(3)并且要发生(第二点),您必须在标头请求的最后一个标头中提供双换行符(即 r n r n)。这告诉标头HTTP请求内容已结束,现在(服务器)将获取数据。
如果不这样做,则服务器将无法理解header的结尾?以及data的开始位置?因此,它一直在等待承诺的数据(挂起)。
免责声明:如有错误,请随时进行编辑。
以上是关于BOOST ASIO POST HTTP REQUEST-标头和正文的主要内容,如果未能解决你的问题,请参考以下文章
std::boost::asio::post / dispatch 使用哪个 io_context?