8

これを数日間機能させようとしましたが、サーバーから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

ビジュアルスタジオ

4

1 に答える 1

16

この質問は非常に古いものですが、http POST で同様の問題に直面しているユーザーのためにこの回答を投稿したいと思います。

サーバーは、「BAD REQUEST」を意味する HTTP 400 を送信しています。これは、リクエストの作成方法が少し間違っているためです。

以下は、JSON データを含む POST 要求を送信する正しい方法です。

#include<string>  //for length()

request_stream << "POST /title/ HTTP/1.1 \r\n";
request_stream << "Host:" << some_host << "\r\n";
request_stream << "User-Agent: C/1.0\r\n";
request_stream << "Content-Type: application/json; charset=utf-8 \r\n";
request_stream << "Accept: */*\r\n";
request_stream << "Content-Length: " << json.length() << "\r\n";    
request_stream << "Connection: close\r\n\r\n";  //NOTE THE Double line feed
request_stream << json;

POSTリクエストでデータ(json、stringなど)を送信するときはいつでも、次のことを確認してください。

(1) Content-Length:正確です。

(2)データをリクエストの最後に行間を空けて配置します。

(3)そしてそれ (2 番目のポイント) を実現するには、ヘッダー要求の最後のヘッダーに二重改行 (つまり \r\n\r\n) を提供する必要があります。これは、HTTP 要求のコンテンツが終了し、サーバーがデータを取得することをヘッダーに伝えます。

これを行わないと、サーバーはヘッダーがどこで終わっているかを理解できません。データの始まりはどこですか?そのため、約束されたデータを待ち続けます (ハングします)。

免責事項: 不正確な点があれば自由に編集してください。

于 2015-04-10T14:46:02.127 に答える