Go - SignatureDoesNotMatch error when S3 object name contains "="

680 Views Asked by At

i am struggling with using the s3manager to create files on S3. the file names need to be in the following format "set=2012-04-3", containing an "=". uploading with out the "=" works perfectly...

code:

sess := session.Must(session.NewSession())

uploader := s3manager.NewUploader(sess)

_, err = uploader.Upload(&s3manager.UploadInput{
    Bucket: aws.String("/testbucket/data/set=2012-04-3/"),
    Key:    aws.String("test.json"),
    Body:   bytes.NewReader([]byte(message.Body)),
})

if err != nil {
    fmt.Printf("\n Error: There was an issue uploading to s3: %s \n", err.Error())
}

Would be grateful for any help here

2

There are 2 best solutions below

0
On BEST ANSWER

Will post the answer here in case someone else needs it.

sess := session.Must(session.NewSession())

uploader := s3manager.NewUploader(sess)

_, err = uploader.Upload(&s3manager.UploadInput{
    Bucket: aws.String("/testbucket"),
    Key:    aws.String("/data/set=2012-04-3/test.json"),
    Body:   bytes.NewReader([]byte(message.Body)),
})

if err != nil {
    fmt.Printf("\n Error: There was an issue uploading to s3: %s \n", err.Error())
}

the Bucket could not contain a path

0
On

Equals sign (=) should be URL encoded or referenced as HEX. See AWS S3 documentation for more info https://docs.aws.amazon.com/AmazonS3/latest/userguide/object-keys.html