Autodesk forge 当我们上传.rvt文件时,总是会收到错误消息";TranslationWorker内部故障;。该文件未损坏,我们已检查

Autodesk forge 当我们上传.rvt文件时,总是会收到错误消息";TranslationWorker内部故障;。该文件未损坏,我们已检查,autodesk-forge,Autodesk Forge,根据您的urn,您的模型很可能是RVT。因此,请使用此请求负载重试: { "type": "manifest", "hasThumbnail": "false", "status": "failed", "progress": "complete", "region": "US", "ur

根据您的urn,您的模型很可能是RVT。因此,请使用此请求负载重试:

{
"type": "manifest",
"hasThumbnail": "false",
"status": "failed",
"progress": "complete",
"region": "US",
"urn": "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6YWRhbV8yMDE3LTA1LTI4X3RhdGFzdGVlbDEvcnN0X2Jhc2ljX3NhbXBsZV9wcm9qZWN0LnJ2dA",
"version": "1.0",
"derivatives": [
    {
        "name": "LMV Bubble",
        "hasThumbnail": "false",
        "status": "failed",
        "progress": "complete",
        "messages": [
            {
                "type": "error",
                "message": "Tr worker fail to download.",
                "code": "TranslationWorker-InternalFailure"
            }
        ],
        "outputType": "svf"
    }
 ]
}

注意。现在,Forge Model Derivation API仅支持Revit 2016-2020中的RVT文件。

您好,anuradha,您的问题似乎缺少一些解释,也缺少一个代码块,无法更好地可视化json。请您添加一个短语以更好地理解您的问题,并为您的json添加一个代码块,好吗?谢谢你能提供你的请求主体来伪造MD POST Jobs API吗?
curl -X POST \
  https://developer.api.autodesk.com/modelderivative/v2/designdata/job \
  -H 'Authorization: Bearer ' \
  -H 'Content-Type: application/json' \
  -H 'cache-control: no-cache' \
  -H 'x-ads-force: true' \
  -d '{
   "input": {
     "urn": "dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6YWRhbV8yMDE3LTA1LTI4X3RhdGFzdGVlbDEvcnN0X2Jhc2ljX3NhbXBsZV9wcm9qZWN0LnJ2dA"
   },
   "output": {
     "formats": [
       {
         "type": "svf",
         "views": [
           "2d",
           "3d"
         ]
       }
     ]
   }
 }'