繁体   English   中英

AWS S3 使用预签名的 URL 更新映像(Axios-PUT 请求)

[英]AWS S3 update image using pre-signed URL (Axios-PUT Request)

我正在尝试使用 REST PUT 请求和 Axios 将本地 JPG 图像文件更新到 S3 存储桶中。

我设法发送了 PUT 请求并从 AWS S3 服务获得了肯定的答复,它上传的不是 JPG 文件,而是 JSON 文件

这是我正在使用的代码:

    //Create the FormData
    var data = new FormData();
    data.append('file', fs.createReadStream(image_path));


   //Send the file to File-system
   console.log("Sending file to S3...");
   const axiosResponse = await axios.put(image_signed_url, {
       data: data,
       headers: { 'Content-Type': 'multipart/form-data' }
     }).catch(function(error) {
      console.log(JSON.stringify(error));
      return null;
     });

我已经尝试将标题更改为{'Content-Type': 'application/octet-stream' }但我得到了相同的结果。

它没有设法使 AXIOS 工作以上传图像。

node-fetch 模块将图像作为二进制文件发送并指定“内容类型”。

如果我尝试使用 AXIOS 进行相同操作,则图像总是被打包成表单数据,结果是 JSON 文件上传到 S3 存储桶而不是图像。

 //Send the file to File-system
console.log("Sending file to S3...");
const resp = await fetch(image_signed_url, {
    method: 'PUT',
    body: fs.readFileSync(image_path),
    headers: {
      'Content-Type': 'image/jpeg',
  },
}).catch( err => {
  console.log(err);
  return null;
});

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM