将JSON传递给HTTP POST请求

问题描述:

我正在尝试使用 nodejs 请求向Google QPX Express API [1]发出HTTP POST请求

I'm trying to make a HTTP POST request to the google QPX Express API [1] using nodejs and request [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参数传递JSON [3]。
而不是正确的JSON响应,我得到一个错误(400未定义)。

What I'm trying to do is passing the JSON using the multipart argument [3]. But instead of the proper JSON response I got an error (400 undefined).

当我使用相同的JSON和API键使用CURL进行请求时,它工作正常。所以我的API密钥或JSON没有任何问题。

When I make a request using the same JSON and API Key using CURL instead, it works fine. So there's nothing wrong with my API key or JSON.

我的代码有什么问题?

编辑

工作CURL示例:

i)我保存了我将通过的JSON对我的请求转换成一个名为request.json的文件:

i) I saved the JSON which I would pass to my request into a file called "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密钥):

ii) then, in the terminal I switched to the directory in which the newly created request.json file was located and run (myApiKey stands for my actual API Key obviously):

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解析错误

我认为以下内容应该有效:

I think the following should work:

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

在这种情况下, Content-type:application / json header自动添加。

In this case, the Content-type: application/json header is automatically added.