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
专家
已提问 2 年前398 查看次数
1 回答
0
已接受的回答

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
专家
已回答 2 年前

您未登录。 登录 发布回答。

一个好的回答可以清楚地解答问题和提供建设性反馈,并能促进提问者的职业发展。

回答问题的准则