AWS - API Gateway
Given this CORS configuration snippet for an S3 bucket:
{
"CORSRules": [
{
"AllowedOrigins": ["https://example.com"],
"AllowedMethods": ["GET"],
"AllowedHeaders": ["*"],
"MaxAgeSeconds": 3000
}
]
}
What will happen if a browser from https://example.com sends a POST request to this bucket?