您如何使用request下载文件内容并使用 aws-sdk for node 将其直接流式传输到 s3?
下面的代码给了我Object #<Request> has no method 'read'
这使得它看起来像请求不返回一个可读的流......
var req = require('request');
var s3 = new AWS.S3({params: {Bucket: myBucket, Key: s3Key}});
var imageStream = req.get(url)
.on('response', function (response) {
if (200 == response.statusCode) {
//imageStream should be read()able by now right?
s3.upload({Body: imageStream, ACL: "public-read", CacheControl: 5184000}, function (err, data) { //2 months
console.log(err,data);
});
}
});
});
根据aws-sdk 文档 Body
需要是一个ReadableStream
对象。
我在这里做错了什么?
这可以使用s3-upload-stream模块完成,但是我更愿意限制我的依赖项。