Grafana Twin Maker Scene plugin shows "Load 3D Scene failed with Network Failure"

0

Hi! Any ideas on fixing the "Load 3D Scene failed with Network Failure" when trying to load up my scene into Grafana from Twin Maker?

AWS
EXPERT
asked 2 years ago420 views
1 Answer
0
Accepted Answer

The Amazon S3 bucket on which the 3d model files are stored is missing CORS policies. To fix, add the following CORS policy to the Amazon S3 bucket:

[
    {
        "AllowedHeaders": [
            "*"
        ],
        "AllowedMethods": [
            "GET",
            "PUT",
            "POST",
            "DELETE",
            "HEAD"
        ],
        "AllowedOrigins": [
            "*"
        ],
        "ExposeHeaders": [
            "ETag"
        ]
    }
]
AWS
EXPERT
answered 2 years ago

You are not logged in. Log in to post an answer.

A good answer clearly answers the question and provides constructive feedback and encourages professional growth in the question asker.

Guidelines for Answering Questions