StitchError:SignatureDoesNotMatch:我们计算出的请求签名与您提供的签名不匹配。检查您的密钥和签名方法

时间:2019-01-01 12:47:44

标签: javascript amazon-s3 mongodb-stitch

我在Stitch App Function中使用s3服务。我想从s3存储桶中获取文件。 但这给了我一个错误。

StitchError:SignatureDoesNotMatch:我们计算出的请求签名与您提供的签名不匹配。检查您的密钥和签名方法。

这是我的绣花应用功能的代码。

exports = async function() {
  const s3 = context.services.get('AWSS3').s3("us-west-2");
  try {
    const result = await s3.GetObject({
      "Bucket": "trade-bakerz/attachments",
      "Key": "file2.csv",
    });
    console.log(EJSON.stringify(result),'success');
    // return result;
  } catch(error) {
    console.error(error,'error');
  }
};

0 个答案:

没有答案