我的节点js代码从我的服务器tmp.png打开一个本地png文件,然后尝试将其保存为amazon S3。我一直遇到问题,我怀疑它与编码有关。它的唯一工作方式是使用base64编码(我的照片不需要)。
fs = require('fs');
var awssum = require('awssum');
var amazon = awssum.load('amazon/amazon');
var s3Service = awssum.load('amazon/s3');
var s3 = new s3Service('mykey', 'mysecret', 'account', amazon.US_WEST_1);
fs.readFile('./tmp.png', function (err, data){
if(err){
console.log("There was an error opening the file");
} else {
s3.PutObject({
BucketName : 'my-bucket',
ObjectName : 'tmp.png',
ContentType : 'image/png',
ContentLength : data.length,
Body : data,
}, function(err, data) {
if(err){
console.log("There was an error writing the data to S3:");
console.log(err);
} else {
console.log("Your data has been written to S3:");
console.log(data);
}
});
}
});
显然,我的存储桶实际上是我唯一的存储桶名称。我从亚马逊回来的消息是请求超时:
在超时期限内未读取或写入与服务器的套接字连接。空闲连接将被关闭。
答案 0 :(得分:2)
看起来像是在我需要它的文档中找到了一个例子。关键是使用fs.stat作为文件大小,使用fs.createReadStream读取文件:
// you must run fs.stat to get the file size for the content-length header (s3 requires this)
fs.stat(path, function(err, file_info) {
if (err) {
inspect(err, 'Error reading file');
return;
}
var bodyStream = fs.createReadStream( path );
console.log(file_info.size);
var options = {
BucketName : 'my-bucket',
ObjectName : 'test.png',
ContentType : 'image/png',
ContentLength : file_info.size,
Body : bodyStream
};
s3.PutObject(options, function(err, data) {
console.log("\nputting an object to my-bucket - expecting success");
inspect(err, 'Error');
inspect(data, 'Data');
});
});