これを数日間機能させようとしましたが、サーバーから400エラーが発生し続けます。
基本的に、私がやろうとしているのは、いくつかのプロパティを持つ JSON 要求本文を必要とするサーバーに http POST 要求を送信することです。
これらは私が現在使用しているライブラリです
UPDATED --- 7/23/13 10:00am HTTP の代わりに TCP を使用していることに気付きました。これが HTTP 呼び出しにどの程度影響するかはわかりませんが、BOOST::ASIO で純粋な HTTP を使用するクライアントの例を見つけることができません。
#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 本文
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 \r\n";
request_stream << "Host:" << some_host << "\r\n";
request_stream << "User-Agent: C/1.0";
request_stream << "Content-Type: application/json; charset=utf-8 \r\n";
request_stream << json << "\r\n";
request_stream << "Accept: */*\r\n";
request_stream << "Connection: close\r\n\r\n";
// Send the request.
boost::asio::write(socket, request);
私はプレースホルダーの値を入れていますが、私のコードで動作しないものが飛び出しているのを見つけた場合は、なぜ私が 400 の悪いリクエストを受け取り続けるのか分からないことをお知らせください.
リグについての情報
C++
WIN7
ビジュアルスタジオ