我无法下载带有标签的 link 生成的 minio
i cant download minio generated link with a tag
我正在尝试使用下载属性从带有 "a" 标签的 minio 浏览器下载一些东西。
在这种情况下,我想下载一首歌曲,当我点击 link 时,我重定向到播放歌曲页面,但我没有看到任何下载或另存为弹出窗口。
如果我在 idm(互联网下载管理器)中复制 link 和过去,开始下载文件。
我为 *
设置了存储桶策略 => 只读
和一个标签:
<a href="https://5c6d9b4556185a0011c13b92.storage.liara.ir/singles/Ali%20Sorena%20-%20Aavaar(320)?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=V53B3X6JUVA1NSMG7SOAJ/20190417/us-east-1/s3/aws4_request&X-Amz-Date=20190417T104438Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=39db9a3041d351b03c7b71b8a68d37f1729374e9008be9a68d378f88fb043b50"
download>Download</a>
您需要添加 Content-Disposition
header 以强制下载(参见 How to Use Content-disposition for force a file to download to the hard drive?)。
您可以apparently use the reqParams
argument添加response-content-disposition
。
可能是这样的。
liaraClient.presignedUrl(
"GET",
"mybucket",
"myfile.mp3",
{ "response-content-disposition": "attachment; name=myfile.mp3" },
24 * 60 * 60,
(err, presignedUrl) => {
if (err) return console.log(err);
console.log(presignedUrl);
},
);
我正在尝试使用下载属性从带有 "a" 标签的 minio 浏览器下载一些东西。 在这种情况下,我想下载一首歌曲,当我点击 link 时,我重定向到播放歌曲页面,但我没有看到任何下载或另存为弹出窗口。 如果我在 idm(互联网下载管理器)中复制 link 和过去,开始下载文件。
我为 *
设置了存储桶策略 => 只读和一个标签:
<a href="https://5c6d9b4556185a0011c13b92.storage.liara.ir/singles/Ali%20Sorena%20-%20Aavaar(320)?X-Amz-Algorithm=AWS4-HMAC-SHA256&X-Amz-Credential=V53B3X6JUVA1NSMG7SOAJ/20190417/us-east-1/s3/aws4_request&X-Amz-Date=20190417T104438Z&X-Amz-Expires=604800&X-Amz-SignedHeaders=host&X-Amz-Signature=39db9a3041d351b03c7b71b8a68d37f1729374e9008be9a68d378f88fb043b50"
download>Download</a>
您需要添加 Content-Disposition
header 以强制下载(参见 How to Use Content-disposition for force a file to download to the hard drive?)。
您可以apparently use the reqParams
argument添加response-content-disposition
。
可能是这样的。
liaraClient.presignedUrl(
"GET",
"mybucket",
"myfile.mp3",
{ "response-content-disposition": "attachment; name=myfile.mp3" },
24 * 60 * 60,
(err, presignedUrl) => {
if (err) return console.log(err);
console.log(presignedUrl);
},
);