我正在使用cordova文件传输使用签名的url从aws s3下载文件,因为cordova filetransfer对uri进行编码,签名中的“%”被转换为“%25”,因此导致签名不匹配
问问题
1421 次
1 回答
7
尝试像这样设置您的选项:
options = {
fileKey: 'file',
fileName: name,
chunkedMode: false,
mimeType: 'audio/3gpp',
httpMethod: 'PUT',
// Important!
headers: {
'Content-Type': 'audio/3gpp' // < Set explicitly otherwise it becomes multipart/form-data which won't work with S3
},
encodeURI: false // < Stops any extra encoding by file transfer logic
}
我花了很多痛苦的时间让预签名的 PUT 与 cordova / S3 一起工作。祝你好运。
于 2015-08-11T00:15:52.700 回答