admin管理员组

文章数量:1340286

I'm using the AWS Javascript SDK to put files to my S3. The following code is intended to upload a user avatar to the S3. I'm hardcoding the accessKeyId and secretAccessKey for now, and taking the file and key for uploading from a web form.

 document.getElementById("upload-button").onclick = function() {
     const key = document.getElementById("key-text").value;
     var file = document.getElementById("file-chooser").files[0];

     const S3 = new AWS.S3({
      signatureVersion: "v4",
      apiVersion: '2006-03-01',
      accessKeyId: 'ACCESS_KEY_ID',
      secretAccessKey: 'SECRET_ACCESS_KEY',
      region: 'us-west-2'
    })

      S3.putObject({
        Key: key,
        Bucket: 'my-bucket-name',
        Body: file,
      }, (err, data) => {
        if (err) {
          alert("Error: " + err);
        } else {
          alert("Upload successful: " + data);
        }
      })
  }
 document.getElementById("upload-button").onclick = function() {
     const key = document.getElementById("key-text").value;
     var file = document.getElementById("file-chooser").files[0];

     const S3 = new AWS.S3({
      signatureVersion: "v4",
      apiVersion: '2006-03-01',
      accessKeyId: 'ACCESS_KEY_ID',
      secretAccessKey: 'SECRET_ACCESS_KEY',
      region: 'us-west-2'
    })

      S3.putObject({
        Key: key,
        Bucket: 'ilarp-data-prod-1',
        Body: file,
      }, (err, data) => {
        if (err) {
          alert("Error: " + err);
        } else {
          alert("Upload successful: " + data);
        }
      })
  }

The code above gives me an error return of SignatureDoesNotMatch I'm mystified by that, since I thought I was letting the API do the signing, and earlier versions of this (which I unfortunately cannot reproduce) did not give me this error.

I'm using the AWS Javascript SDK to put files to my S3. The following code is intended to upload a user avatar to the S3. I'm hardcoding the accessKeyId and secretAccessKey for now, and taking the file and key for uploading from a web form.

 document.getElementById("upload-button").onclick = function() {
     const key = document.getElementById("key-text").value;
     var file = document.getElementById("file-chooser").files[0];

     const S3 = new AWS.S3({
      signatureVersion: "v4",
      apiVersion: '2006-03-01',
      accessKeyId: 'ACCESS_KEY_ID',
      secretAccessKey: 'SECRET_ACCESS_KEY',
      region: 'us-west-2'
    })

      S3.putObject({
        Key: key,
        Bucket: 'my-bucket-name',
        Body: file,
      }, (err, data) => {
        if (err) {
          alert("Error: " + err);
        } else {
          alert("Upload successful: " + data);
        }
      })
  }
 document.getElementById("upload-button").onclick = function() {
     const key = document.getElementById("key-text").value;
     var file = document.getElementById("file-chooser").files[0];

     const S3 = new AWS.S3({
      signatureVersion: "v4",
      apiVersion: '2006-03-01',
      accessKeyId: 'ACCESS_KEY_ID',
      secretAccessKey: 'SECRET_ACCESS_KEY',
      region: 'us-west-2'
    })

      S3.putObject({
        Key: key,
        Bucket: 'ilarp-data-prod-1',
        Body: file,
      }, (err, data) => {
        if (err) {
          alert("Error: " + err);
        } else {
          alert("Upload successful: " + data);
        }
      })
  }

The code above gives me an error return of SignatureDoesNotMatch I'm mystified by that, since I thought I was letting the API do the signing, and earlier versions of this (which I unfortunately cannot reproduce) did not give me this error.

Share Improve this question edited Jan 24, 2024 at 21:21 Marcello B. 4,44011 gold badges47 silver badges69 bronze badges asked Mar 27, 2018 at 16:24 gischergischer 3751 gold badge3 silver badges12 bronze badges 4
  • make sure the time sync is proper on the server. – Varun Chandak Commented Mar 27, 2018 at 19:28
  • Signing of signed URLs is done entirely locally, in this case in the browser (not remended), and not by a service API. The service is not aware of the signed URL until you use it. Can you show us the entire error output from S3? – Michael - sqlbot Commented Mar 28, 2018 at 12:54
  • Thank you Michael. I've since realized that my test was mismatching an accessKeyId and secretAccessKey, and that was why it was telling me that the signature did not match. Because it didn't. In spite of checking the strings multiple times for just this issue, I still missed it. Sorry about that. – gischer Commented Mar 28, 2018 at 21:52
  • Yes, I'm signing the URLs in the browser, that's what the API does. It turns out that the IAM users have VERY limited permissions, which is why I'm willing to expose their credentials to a browser. I'm sure there are other ways to do this... – gischer Commented Mar 28, 2018 at 21:54
Add a ment  | 

2 Answers 2

Reset to default 9

It turns out that this was pilot error. I was mismatching the ACCESS_KEY_ID and SECRET_ACCESS_KEY. Even though I checked this very thing a dozen times, I still got it wrong. Sorry about that. If you e here wondering about this, know that every programmer makes a dumb mistake every once in a while.

In my case this was caused by the filename/key I was using starting with /. By simply removing the proceeding forward slash it solved the issue I was encountering.

For example:

This snippet causes the SignatureDoesNotMatch error:

await storage.putObject({
    Bucket: process.env.BUCKET,
    Key: `/${req.params.customer}/uploads/${filename}`,
    Body: fileContent,
});

Whereas this snippet does not cause the error:

await storage.putObject({
    Bucket: process.env.BUCKET,
    Key: `${req.params.customer}/uploads/${filename}`,
    Body: fileContent,
});

本文标签: javascriptSignatureDoesNotMatch error from S3 putObjectStack Overflow