1. ホーム
  2. json

[解決済み] HTTP POST リクエストに JSON を渡す

2023-01-23 01:39:50

質問

google QPX Express API [1] にHTTP POSTリクエストを行おうとしています。 nodejs そして リクエスト [2].

私のコードは以下のようになります。

    // 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)
        }
    })

私がやろうとしていることは、multipart引数[3]を使用してJSONを渡すことです。 しかし、適切なJSONレスポンスの代わりに、私はエラー(400 undefined)を受け取りました。

代わりにCURLを使用して同じJSONとAPI Keyを使用してリクエストを行うと、正常に動作します。つまり、私のAPIキーやJSONには何も問題がないのです。

私のコードに何か問題があるのでしょうか?

EDIT :

動作する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 Keyを表しています)。

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 パース エラーを返している。

どのように解決するのですか?

以下のようにするとうまくいくと思います。

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

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