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 年前

您尚未登入。 登入 去張貼答案。

一個好的回答可以清楚地回答問題並提供建設性的意見回饋,同時有助於提問者的專業成長。

回答問題指南