gpt4 book ai didi

django - 在 S3 存储桶 CORS 配置中不允许使用 xml 而是要求使用 json

转载 作者:行者123 更新时间:2023-12-03 15:27:04 25 4
gpt4 key购买 nike

在 S3 存储桶 CORS 配置中不允许“XML”并要求“Json”

<?xml version="1.0" encoding="UTF-8"?>
<CORSConfiguration xmlns="http://s3.amazonaws.com/doc/2006-03-01/">
<CORSRule>
<AllowedOrigin>*</AllowedOrigin>
<AllowedMethod>GET</AllowedMethod>
<AllowedMethod>POST</AllowedMethod>
<AllowedMethod>PUT</AllowedMethod>
<AllowedHeader>*</AllowedHeader>
</CORSRule>
</CORSConfiguration>
以前工作过,但现在它给了我这个错误“CORS 配置必须用有效的 JSON 编写。”
AMAZON 在“Amazon S3 Bucket”中进行了一些更改,请给我这个 json 以添加到 CORS 中?

最佳答案

在新的 S3 控制台中,CORS 配置必须是 JSON。阅读更多 here .
在您的情况下,JSON CORS 配置可以编写如下:

[
{
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"POST",
"GET",
"PUT"
],
"AllowedOrigins": [
"*"
]
}
]

关于django - 在 S3 存储桶 CORS 配置中不允许使用 xml 而是要求使用 json,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/64842173/

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