I have files hosted on Amazon S3, and I'd like to download them after a treatment in my app. This app view requires the HTTP Authorization header to proceed. Here is the process:
- Query view
/file/xxx
with the requiredAuthorization
request header - If the app access is granted, does some treatment
- Generate a signed S3 url, and redirect to it
The fact is that the request header is also propagated on the redirect, and is in conflict with Amazon's S3 signature, I have the following error message:
Either the Signature query string parameter or the Authorization header should be specified, not both
So, is there a way to not propagate the Authorization
header to S3 ?
Note that I have tested all 3xx
HTTP codes. Thanks in advance.