ifox
11/25/2022, 1:02 PMifox
11/25/2022, 1:03 PMzynth
11/25/2022, 1:04 PMzynth
11/25/2022, 1:07 PMifox
11/25/2022, 1:09 PMifox
11/25/2022, 1:09 PMifox
11/25/2022, 1:09 PMzynth
11/25/2022, 1:13 PMifox
11/25/2022, 1:16 PMzynth
11/25/2022, 1:18 PMzynth
11/25/2022, 1:18 PMamargoCactus
11/25/2022, 1:30 PMifox
11/25/2022, 1:37 PMifox
11/25/2022, 1:37 PMamargoCactus
11/25/2022, 1:40 PMamargoCactus
11/25/2022, 2:29 PM{
"CORSRules": [
{
"AllowedOrigins": [
"*"
],
"AllowedHeaders": [
"*"
],
"AllowedMethods": [
"PUT",
"POST",
"DELETE"
],
"MaxAgeSeconds": 3000,
"ExposeHeaders": [
"x-amz-server-side-encryption"
]
},
{
"AllowedOrigins": [
"*"
],
"AllowedHeaders": [
"Authorization"
],
"AllowedMethods": [
"GET"
],
"MaxAgeSeconds": 3000
}
]
}
ifox
11/25/2022, 2:55 PMifox
11/25/2022, 2:57 PMcontent-type,x-ms-blob-type,x-ms-meta-height,x-ms-meta-qqfilename,x-ms-meta-width,x-ms-meta-unique_folder_name,x-ms-meta-media_to_replace_id
, looks like you'd need to replace x-ms
by x-amz
in your caseamargoCactus
11/25/2022, 4:46 PMamargoCactus
11/25/2022, 4:46 PMifox
11/25/2022, 4:47 PMamargoCactus
11/25/2022, 4:54 PMkalle
11/25/2022, 5:03 PMamargoCactus
11/25/2022, 5:05 PM{
"Policy": {
"Id":"CntbPolicy",
"Version":"2012-10-17",
"Statement": [
{
"Action": [
"s3:GetObject",
],
"Effect": "Allow",
"Resource":["arn:aws:s3:::my-bucket/*"],
"Principal":"*"
}
]
}
}
amargoCactus
11/25/2022, 5:09 PM{
"Id": "CntbPolicy",
"Version": "2012-10-17",
"Statement": [
{
"Action": [
"s3:PutObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::my-bucket/*"
],
"Principal": "*"
},
{
"Action": [
"s3:GetObject"
],
"Effect": "Allow",
"Resource": [
"arn:aws:s3:::my-bucket/*"
],
"Principal": "*"
}
]
}
kalle
11/25/2022, 5:15 PMamargoCactus
11/25/2022, 6:06 PMamargoCactus
11/26/2022, 2:22 AMamargoCactus
11/26/2022, 5:10 AMamargoCactus
11/26/2022, 5:11 AM