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
1 Answer
Reset to default 12You 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
版权声明:本文标题:javascript - How do I use JSON in the body of an http PUT in node.js? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1743673139a2519868.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论