Jump to content

Marketplace: There was a problem loading this content.


Go to solution Solved by kotaco,

Recommended Posts

  • Solution
Posted (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 by kotaco
Fixed
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...