gpt4 book ai didi

amazon-s3 - CORS。预签名网址。 S3

转载 作者:行者123 更新时间:2023-12-03 08:15:22 24 4
gpt4 key购买 nike

我已经生成了一个预先签名的 S3 POST URL。使用返回参数,然后我将其传递到我的代码中,但我不断收到此错误 Response to preflight request doesn't pass access control check: No 'Access-Control-Allow-Origin' header is present on the requested resource. .

而在 Postman 上,我可以使用一个附件提交表单数据。

在 PostMan 上,我手动输入了参数
enter image description here

然后将相同的参数输入到我的代码中。
enter image description here

最佳答案

您必须编辑 CORS 配置 要公开,例如:

   <?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>POST</AllowedMethod>
<MaxAgeSeconds>3000</MaxAgeSeconds>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
enter image description here

关于amazon-s3 - CORS。预签名网址。 S3,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47689489/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com