admin管理员组

文章数量:1341411

See my code below. I am trying to send { "status" : "accepted" } in the body of my request. The error I keep getting back from the API on their end is:

{"message":"Unable to parse JSON in request body.","code":"invalid_json"}

I can make this work in Swift but with that I'm using a dictionary object with the settings and serializing it. I don't know how to do that in Node.JS.

var https = require('https')

var options = {
    "host": "sandbox-api.uber",
    "path": "/v1/sandbox/requests/" + req.body.request_id,
    "method": "PUT",
    "headers": { 
    "Authorization" : "Bearer " + req.body.bearer_token,
    "Content-Type" : "application/json",
    },
    "body" : {
        "status" : "accepted"
    }
}

callback = function(response) {
    var str = ''
    response.on('data', function(chunk){
        str += chunk
    })

    response.on('end', function(){
        console.log(str)
    })
}

https.request(options, callback).end()

See my code below. I am trying to send { "status" : "accepted" } in the body of my request. The error I keep getting back from the API on their end is:

{"message":"Unable to parse JSON in request body.","code":"invalid_json"}

I can make this work in Swift but with that I'm using a dictionary object with the settings and serializing it. I don't know how to do that in Node.JS.

var https = require('https')

var options = {
    "host": "sandbox-api.uber.",
    "path": "/v1/sandbox/requests/" + req.body.request_id,
    "method": "PUT",
    "headers": { 
    "Authorization" : "Bearer " + req.body.bearer_token,
    "Content-Type" : "application/json",
    },
    "body" : {
        "status" : "accepted"
    }
}

callback = function(response) {
    var str = ''
    response.on('data', function(chunk){
        str += chunk
    })

    response.on('end', function(){
        console.log(str)
    })
}

https.request(options, callback).end()
Share asked Aug 31, 2015 at 23:52 Nathan McKaskleNathan McKaskle 3,08312 gold badges63 silver badges101 bronze badges 1
  • 1 The builtin http libraries are fairly barebones. It's much easier to use something higher-level like request, which handles a lot of details for you. – josh3736 Commented Sep 1, 2015 at 0:20
Add a ment  | 

1 Answer 1

Reset to default 12

You write it to the request object like:

var https = require('https')

var options = {
  "host": "sandbox-api.uber.",
  "path": "/v1/sandbox/requests/" + req.body.request_id,
  "method": "PUT",
  "headers": { 
    "Authorization" : "Bearer " + req.body.bearer_token,
    "Content-Type" : "application/json",
  }
}

callback = function(response) {
  var str = ''
  response.on('data', function(chunk){
    str += chunk
  })

  response.on('end', function(){
    console.log(str)
  })
}

var body = JSON.stringify({
  status: 'accepted'
});
https.request(options, callback).end(body);

本文标签: javascriptHow do I use JSON in the body of an http PUT in nodejsStack Overflow