I am using FineUploader to upload files to Amazon S3, and I would like to add the Content-Disposition
header to the files. I have tried this (in CoffeeScript):
request:
endpoint: "..."
accessKey: "...
customHeaders:
"Content-Disposition": "attachment;"
This hasn't worked for me. Any tips on what I should do instead?
Thanks.