I have a play application that needs to upload files to S3. We are developing in scala and using the Java AWS SDK.
I\'m having trouble trying to upload files, I keep
I faced a similar issue and setting the config signatureVersion: 'v4' helped solve it in my case -
signatureVersion: 'v4'
In JavaScript:
var s3 = new AWS.S3({ signatureVersion: 'v4' });
Adapted from https://github.com/aws/aws-sdk-js/issues/902#issuecomment-184872976