Node.js를 사용하여 JSON을 PostBin에 POST하지만 데이터 형식이 잘못되었습니다 (여기에서 볼 수 있듯이 http://www.postbin.org/1cpndqw ).
이것은 tesT에 사용하는 코드입니다.
var http = require('http');
var options = {
host: 'www.postbin.org',
port: 80,
path: '/1cpndqw',
method: 'POST'
};
var req = http.request(options, function(res) {
console.log('STATUS: ' + res.statusCode);
console.log('HEADERS: ' + JSON.stringify(res.headers));
res.setEncoding('utf8');
res.on('data', function (chunk) {
console.log('BODY: ' + chunk);
});
});
req.write(JSON.stringify({ a:1, b:2, c:3 }, null, 4));
req.end();
{"a":1,"b":2,"c":3}
문제를 해결 했습니까? 데이터가 올바르게 게시 된 것 같습니다.