Let me start of by saying that I am normally very reluctant to post this questions as I always feel that there\'s an answer to everything SOMEWHERE on the internet. After sp
Are you using the official AWS Node.js SDK? http://aws.amazon.com/sdkfornodejs/
Here's how I'm using it...
var data = {
Bucket: "bucket-xyz",
Key: "uploads/" + filename,
Body: buffer,
ACL: "public-read",
ContentType: mime.lookup(filename)
};
s3.putObject(data, callback);
And My uploaded files are public readable. Hope it helps.