Tôi đang sử dụng Node.js để ĐĂNG JSON lên PostBin nhưng dữ liệu đang được định dạng sai (như bạn có thể thấy ở đây: http://www.postbin.org/1cpndqw ).
Đây là mã tôi đang sử dụng cho 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}
bạn đã khắc phục sự cố của bạn? Có vẻ như bạn đã đăng đúng dữ liệu.