我尝试将带有来自 node.js 的 POST 请求的 *.wgt 文件(这是有效的 *.zip 文件)发送到运行 Wookie Server 的其他服务器。我已经关注了http server和fs的 node.js 文档以及 stackoverflow 上的另外两个帖子(Node.js POST File to Server以及如何从 node.js 上传文件),但我没有设法让它工作。
我已经做了什么:
我有存储在 node.js 服务器上的 *.wgt 文件。我在节点中创建一个 http 服务器,准备对 Wookie REST API 的 POST 请求,获取 *.zip 文件流并使用 .zip 流fs.createReadStream()
式传输它pipe()
。但我收到以下错误响应:
错误:找不到上传到服务器的文件。客户端发送的请求在语法上不正确(没有文件上传到服务器)。
此特定请求的 Wookie Server API 参考如下所示:
POST {wookie}/widgets {file} - 向服务器添加一个小部件。该方法在响应中回显小部件元数据。
我的代码如下所示:
var http = require('http');
var fs = require('fs');
var file_name = 'test.wgt';
// auth data for access to the wookie server api
var username = 'java';
var password = 'java';
var auth = 'Basic ' + new Buffer(username + ':' + password).toString('base64');
// boundary key for post request
var boundaryKey = Math.random().toString(16);
var wookieResponse = "";
// take content length of the request body: see https://stackoverflow.com/questions/9943010/node-js-post-file-to-server
var body_before_file =
'--' + boundaryKey + '\r\n'
+ 'Content-Type: application/octet-stream\r\n'
+ 'Content-Disposition: form-data; name="file"; filename="'+file_name+'"\r\n'
+ 'Content-Transfer-Encoding: binary\r\n\r\n';
var body_after_file = "--"+boundaryKey+"--\r\n\r\n";
fs.stat('./uploads/'+file_name, function(err, file_info) {
console.log(Buffer.byteLength(body_before_file) +"+"+ file_info.size +"+"+ Buffer.byteLength(body_after_file));
var content_length = Buffer.byteLength(body_before_file) +
file_info.size +
Buffer.byteLength(body_after_file);
// set content length and other values to the header
var header = {
'Authorization': auth,
'Content-Length': String(content_length),
'Accept': '*/*',
'Content-Type': 'multipart/form-data; boundary="--'+boundaryKey+'"',//,
'Accept-Encoding': 'gzip,deflate,sdch',
'Accept-Charset': 'ISO-8859-2,utf-8;q=0.7,*;q=0.3'
};
// set request options
var options = {
host: appOptions.hostWP,
port: 8080,
path: '/wookie/widgets',
method: 'POST',
headers: header
};
// create http request
var requ = http.request(options, function(res) {
res.setEncoding('utf8');
res.on('data', function (chunk) {
wookieResponse = wookieResponse + chunk;
});
res.on('end', function (chunk) {
wookieResponse = wookieResponse + chunk;
console.log(wookieResponse);
})
});
// write body_before_file (see above) to the body request
requ.write(body_before_file);
// prepare createReadStream and pipe it to the request
var fileStream = fs.createReadStream('./uploads/'+file_name);
fileStream.pipe(requ, {end: false});
// finish request with boundaryKey
fileStream.on('end', function() {
requ.end('--' + boundaryKey + '--\r\n\r\n');
});
requ.on('error', function(e) {
console.log('problem with request: ' + e.message);
});
});
我做错了什么,如何通过 node.js 的 POST 请求实现正确的 *.wgt/*.zip 文件上传?
干杯,迈克尔