0

所以.. 我是 Meteor 的新手,我正在尝试使用 edgee:slingshot 上传到 S3 存储桶。我在根目录中有一个包含以下信息的设置文件。

{

  "AWSAccessKeyId": "Key",
  "AWSSecretAccessKey": "Key"

}

在服务器端,我有:

Slingshot.createDirective("Test", Slingshot.S3Storage, {
  bucket: "test",

  acl: "public-read",

  key: function (file) {

    return file.name;
  }
}); 

在客户端,我有:

 var doc = document.implementation.createHTMLDocument("New Document");
  var p = doc.createElement("p");
  p.innerHTML = "This is a new paragraph.";

  try {
    doc.body.appendChild(p);
    console.log(doc);
  } catch(e) {
    console.log(e);
  }

  var uploader = new Slingshot.Upload("Test");

uploader.send(doc, function (error, downloadUrl) {
  if (error) {

    console.error('Error uploading', uploader.xhr.response);
    alert (error);
  }
  else{
    console.log("Worked!");
  }
});

我在 Windows 上使用 Meteor,错误是:

S3:AWS 密钥未定义

匹配错误:缺少密钥“授权”。

我不确定为什么会发生此错误,因此非常感谢您的帮助。

我运行我settings.jsonmeteor run --settings settings.json,它工作正常。

4

2 回答 2

3

缺少的一件事是authorize指令中的函数,这是必需的(请参阅API),因此添加

Slingshot.createDirective("Test", Slingshot.S3Storage, {
  bucket: "test",

  acl: "public-read",

  authorize: function () {
    // do some validation
    // e.g. deny uploads if user is not logged in.
    if (!this.userId) {
      throw new Meteor.Error(403, "Login Required");
     }

    return true;
  },

  key: function (file) {

    return file.name;
  }
}); 

请注意maxSizeallowedFileTypes也是必需的,因此您应该添加到客户端和服务器端代码(例如在 lib/common.js 中)

Slingshot.fileRestrictions("Test", {
  allowedFileTypes: ["image/png", "image/jpeg", "image/gif"],
  maxSize: 10 * 1024 * 1024 // 10 MB (use null for unlimited)
});

希望有帮助。

于 2015-04-12T21:20:21.663 回答
0

在服务器端像这样初始化指令

Slingshot.createDirective('Test', Slingshot.S3Storage, {
  bucket: 'test',
  maxSize: 1024 * 1024 * 1,
  acl: 'public-read',
  region: AWS_REGION_OF_UR_BUCKET,
  AWSAccessKeyId: YOUR_AWS_ACCESS_KEY_ID,
  AWSSecretAccessKey: YOUR_AWS_SECRET_ACCESS_KEY,
  allowedFileTypes: ['image/png', 'image/jpeg', 'image/gif'],
  authorize: function() {
   var message;
   if (!this.userId) {
    message = 'Please login before posting files';
    throw new Meteor.Error('Login Required', message);
   }
   return true;
  },
  key: function(file) {
    // admin would be the folder and file would be saved with a timestamp
    return 'admin/' + Date.now() + file.name;
  }
 });

其他一切似乎都很好。

于 2015-06-26T15:55:14.790 回答