Hei!
I\'m having this issue since yesterday, and I\'m having trouble for find a solution.
I\'m trying to send somethings to my S3 bucket, but this message ap
I had the same problem until I reversed the two lines:
var s3 = new AWS.S3(); AWS.config.loadFromPath('./AwsConfig.json');
to this:
AWS.config.loadFromPath('./AwsConfig.json'); var s3 = new AWS.S3();