I am using ng-file-upload to send a file to AWS-S3 in my angular app.
Upload.http({
url: '/presignedurl',
headers : {
'Content-Type': file.type
},
data: file
})
It is giving me 403 Forbidden error saying
<Code>SignatureDoesNotMatch</Code>
<Message>The request signature we calculated does not match the signature you provided. Check your key and signing method.</Message>