Slingshot软件包与Meteor一起使用,可以直接从客户端将图像上传到S3。我在其他经批准可以正常工作的项目中使用的相同代码。即使是我的本地设置,我也可以将图像上传到云中,但是不能使用相同的部署版本。错误如下:
Failed to upload file to cloud storage [Bad Request - 400]
the region 'us-east-1' is wrong; expecting 'eu-central-1'
(但这并不能告诉您...)
有什么想法吗?
这是Meteor Slingshot指令的初始化:
const s3Settings = Meteor.settings.private.S3settings;
Slingshot.createDirective("userProfileImages", Slingshot.S3Storage, {
AWSAccessKeyId: s3Settings.AWSAccessKeyId,
AWSSecretAccessKey: s3Settings.AWSSecretAccessKey,
bucket: s3Settings.AWSBucket,
region: s3Settings.AWSRegion,
acl: "public-read",
authorize: function () {
if (!this.userId) {
const message = "Please login before posting images";
throw new Meteor.Error("Login Required", message);
}
return true;
},
key: function (file) {
const user = Meteor.users.findOne(this.userId);
return user.username + "/" + file.name;
}
});
这是我的Amazon S3 CORS配置:
<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>PUT</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>HEAD</AllowedMethod>
<MaxAgeSeconds>10000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
我没有存储桶策略。 访问控制都是公共的。
帮助表示赞赏。
答案 0 :(得分:0)
问题出在我身上。我在设置中将区域定义为AWSregion
(r
),而在要设置的代码中将其称为AWSRegion
(R
)。因此它是未定义的,并且不起作用。
解决方案是确保大小写正确。