JSONをHTTP POSTリクエストに渡す


92

nodejsリクエスト [2] を使用して、Google QPX Express API [1]にHTTP POSTリクエストを送信しようとしています。

私のコードは次のようになります:

    // create http request client to consume the QPX API
    var request = require("request")

    // JSON to be passed to the QPX Express API
    var requestData = {
        "request": {
            "slice": [
                {
                    "origin": "ZRH",
                    "destination": "DUS",
                    "date": "2014-12-02"
                }
            ],
            "passengers": {
                "adultCount": 1,
                "infantInLapCount": 0,
                "infantInSeatCount": 0,
                "childCount": 0,
                "seniorCount": 0
            },
            "solutions": 2,
            "refundable": false
        }
    }

    // QPX REST API URL (I censored my api key)
    url = "https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey"

    // fire request
    request({
        url: url,
        json: true,
        multipart: {
            chunked: false,
            data: [
                {
                    'content-type': 'application/json',
                    body: requestData
                }
            ]
        }
    }, function (error, response, body) {
        if (!error && response.statusCode === 200) {
            console.log(body)
        }
        else {

            console.log("error: " + error)
            console.log("response.statusCode: " + response.statusCode)
            console.log("response.statusText: " + response.statusText)
        }
    })

私がやろうとしていることは、マルチパート引数[3]を使用してJSONを渡すことです。しかし、適切なJSON応答の代わりにエラー(400未定義)が発生しました。

代わりにCURLを使用して同じJSONとAPIキーを使用してリクエストを作成すると、正常に機能します。したがって、私のAPIキーまたはJSONに問題はありません。

私のコードの何が問題になっていますか?

編集

CURLの例:

i)リクエストに渡すJSONを「request.json」というファイルに保存しました。

{
  "request": {
    "slice": [
      {
        "origin": "ZRH",
        "destination": "DUS",
        "date": "2014-12-02"
      }
    ],
    "passengers": {
      "adultCount": 1,
      "infantInLapCount": 0,
      "infantInSeatCount": 0,
      "childCount": 0,
      "seniorCount": 0
    },
    "solutions": 20,
    "refundable": false
  }
}

ii)次に、ターミナルで、新しく作成したrequest.jsonファイルが配置されているディレクトリに切り替えて実行します(myApiKeyは明らかに実際のAPIキーを表します)。

curl -d @request.json --header "Content-Type: application/json" https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey

[1] https://developers.google.com/qpx-express/ [2] nodejs用に設計されたhttpリクエストクライアント:https ://www.npmjs.org/package/request [3]ここに私が見つけた例がありますhttps://www.npmjs.org/package/request#multipart-related [4] QPX Express APIが400解析エラーを返す


リクエストから「json:true」を削除してみてください
Baart

違いはありません。しかし、私が知る限り、これは応答がjsonであることを指定するだけですか?
Ronin

機能するcURLコマンドラインを表示できますか?
mscdex 2014年

好奇心から、なぜマルチパートを使用しているのですか?
cloudfeet 2014年

@mscdex私の更新された元の投稿を参照してください
Ronin

回答:


168

私は以下がうまくいくと思います:

// fire request
request({
    url: url,
    method: "POST",
    json: requestData
}, ...

この場合、Content-type: application/jsonヘッダーは自動的に追加されます。


1
なんらかの理由で、当たっているエンドポイントは最初のメソッドを使用して(送信されなかったかのように)paramsを読み取ることができませんでしたが、2番目のメソッドでそれを行うことができました。
不明な開発者2016年

同様にジャミルが言ったこと。私はSyntaxError: Unexpected token &quot;<br> &nbsp; &nbsp;at parse (/home/malcolm/complice/node_modules/body-parser/lib/types/json.js:83:15)最初の方法で得ました。
MalcolmOcean

@MalcolmOceanこれは、<br>タグが有効なJSONコンテンツではないためです
Tobi

このエラーが発生しました:[ERR_STREAM_WRITE_AFTER_END]: write after end、どうすれば修正できますか?
Mehdi Dehghani


10

マルチパートではなく、Content-Type: application/json代わりに「プレーン」なPOSTリクエスト(を使用)が必要です。必要なものは次のとおりです。

var request = require('request');

var requestData = {
  request: {
    slice: [
      {
        origin: "ZRH",
        destination: "DUS",
        date: "2014-12-02"
      }
    ],
    passengers: {
      adultCount: 1,
      infantInLapCount: 0,
      infantInSeatCount: 0,
      childCount: 0,
      seniorCount: 0
    },
    solutions: 2,
    refundable: false
  }
};

request('https://www.googleapis.com/qpxExpress/v1/trips/search?key=myApiKey',
        { json: true, body: requestData },
        function(err, res, body) {
  // `body` is a js object if request was successful
});

私はこれを試しましたが、別のエラーが発生しました:「400。これはエラーです。クライアントが不正な形式または不正な要求を発行しました。それだけです。」完全な応答についてはjsfiddle.net/f71opd7pをご覧ください
Ronin

4
@Tobiは、要求ドキュメントとコードに従って、json: true両方JSON.stringify() body JSON.parse()応答の両方行う必要があります。
mscdex 2014年

これが答えです。さらに、レスポンスをパイプすることもできますrequest('xxx',{ json: true, body: req.body }).pipe(res).on('error', catchErr);
sidonaldson

受け入れられた答えがそうでなかったとき、これは私のために働きました。
greg_diesel 2017年

このエラーが発生しました:[ERR_STREAM_WRITE_AFTER_END]: write after end、どうすれば修正できますか?
Mehdi Dehghani

9

新しいJavaScriptバージョン(ECMAScript 6 http://es6-features.org/#ClassDefinition)では、nodejsおよびPromiseリクエスト(http://www.wintellect.com/devcenter/nstieglitz/5を使用してリクエストを送信するためのより良い方法があります。 -great-features-in-es6-harmony

ライブラリの使用:https : //github.com/request/request-promise

npm install --save request
npm install --save request-promise

クライアント:

//Sequential execution for node.js using ES6 ECMAScript
var rp = require('request-promise');

rp({
    method: 'POST',
    uri: 'http://localhost:3000/',
    body: {
        val1 : 1,
        val2 : 2
    },
    json: true // Automatically stringifies the body to JSON
}).then(function (parsedBody) {
        console.log(parsedBody);
        // POST succeeded...
    })
    .catch(function (err) {
        console.log(parsedBody);
        // POST failed...
    });

サーバ:

var express = require('express')
    , bodyParser = require('body-parser');

var app = express();

app.use(bodyParser.json());

app.post('/', function(request, response){
    console.log(request.body);      // your JSON

    var jsonRequest = request.body;
    var jsonResponse = {};

    jsonResponse.result = jsonRequest.val1 + jsonRequest.val2;

    response.send(jsonResponse);
});


app.listen(3000);

3

例。

var request = require('request');

var url = "http://localhost:3000";

var requestData = {
    ...
} 

var data = {
    url: url,
    json: true,
    body: JSON.stringify(requestData)
}

request.post(data, function(error, httpResponse, body){
    console.log(body);
});

挿入json: trueオプションとして、本文を値のJSON表現に設定し、"Content-type": "application/json"ヘッダーを追加します。さらに、応答本文をJSONとして解析します。 リンク


2

ドキュメントによると:https : //github.com/request/request

例は次のとおりです。

  multipart: {
      chunked: false,
      data: [
        {
          'content-type': 'application/json', 
          body: JSON.stringify({foo: 'bar', _attachments: {'message.txt': {follows: true, length: 18, 'content_type': 'text/plain' }}})
        },
      ]
    }

文字列が期待される場所にオブジェクトを送信すると思います。

body: requestData

沿って

body: JSON.stringify(requestData)

2
       var request = require('request');
        request({
            url: "http://localhost:8001/xyz",
            json: true,
            headers: {
                "content-type": "application/json",
            },
            body: JSON.stringify(requestData)
        }, function(error, response, body) {
            console.log(response);
        });

0

感じる

var x = request.post({
       uri: config.uri,
       json: reqData
    });

このように定義することは、コードを書く効果的な方法になります。そして、application / jsonが自動的に追加されます。特に宣言する必要はありません。


弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.