我需要在 FineUploder 进行的签名调用中添加一些自定义标头。我的 CoffeeScript 看起来像这样:
options =
chunking:
enabled: true
cors:
allowXdr: true
debug: true
iframeSupport:
localBlankPagePath: "/assets/blank.html"
ios: false
multiple: false
request:
endpoint: "..."
accessKey: "..."
customHeaders:
Accept: "application/vnd.keas_web+json;version=4, application/json, text/plain, */*"
X-Something: "Something"
resume:
enabled: true
retry:
showButton: true
signature:
endpoint: "http://localhost:3001/api/s3/sign"
uploadSuccess:
endpoint: "..."
validation:
itemLimit: 5
sizeLimit: 1000000
$("#uploader").fineUploaderS3(options)
正在调用 signature.endpoint API,但未发送自定义标头。(我不仅在服务器中验证了这一点,还在 Chrome 的网络面板中验证了这一点。)
我是否需要为签名 API 调用与其他调用设置不同的自定义标头?
谢谢!