Solution kotaco Posted May 18, 2022 Solution Posted May 18, 2022 (edited) I was having an issue with S3 not allowing me to install items through the Marketplace. I would get a "There was a problem loading this content" error. I believe the issue was related to my CORS config as it was resolved after including "PUT" and "POST" in AllowedMethods[] [ { "AllowedHeaders": [ "*" ], "AllowedMethods": [ "HEAD", "GET", "PUT", "POST" ], "AllowedOrigins": [ "*" ], "ExposeHeaders": [], "MaxAgeSeconds": 3000 } ] Unsure if anyone else has run into this, or if this is the ideal setup for CORS, but it seems to have resolved the issue. Edited May 18, 2022 by kotaco Fixed BertT and SeNioR- 2
Recommended Posts