欧特克锻造 "Failed to trigger translation for this file"

autodesk forge "Failed to trigger translation for this file"

我正在尝试使用 Autodesk Forge 查看器教程

https://developer.autodesk.com/en/docs/model-derivative/v2/tutorials/prepare-file-for-viewer/

我已经成功上传和下载了一个dwg文件

在我将其转换为 svf 的步骤中,它似乎从未处理过并且失败了

{"input":{"urn":"Safe Base64 encoded value of the output of the upload result"},"output":{"formats":[{"type":"svf","views":["2d","3d"]}]}}
HTTP/1.1 400 Bad Request
Result{"diagnostic":"Failed to trigger translation for this file."}

第一个问题我需要删除骨灰盒:在Base64编码之前。 其次,是否有任何我能看到的更详细的错误结果。

请注意,我也尝试过使用 rvt 文件并尝试使用 "type":"thumbnail" 似乎没有任何效果。

我觉得我的编码 URN 不正确,但我不确定为什么会这样。 在教程页面上,他们似乎有一个更长的原始骨灰盒,不确定我是否应该在编码之前向其附加其他内容。他们有一个版本和一些其他数字

来自教程 生的 "urn:adsk.a360betadev:fs.file:business.lmvtest.DS5a730QTbf1122d07 51814909a776d191611?version=12"

我的 原始
"urn:adsk.objects:os.object:gregbimbucket/XXX"

编辑: 这是我从上传 dwg 文件得到的结果

HTTP/1.1 200 OK
Result{
"bucketKey" : "gregbimbucket",
"objectId" : "urn:adsk.objects:os.object:gregbimbucket/XXX",
"objectKey" : "XXX",
"sha1" : "xxxx",
"size" : 57544,
"contentType" : "application/octet-stream",
"location" : "https://developer.api.autodesk.com/oss/v2/buckets/gregbimbucket/objects/XXX"
}

这是我发送来转换的文件

{"input":{"urn":"dXJuOmFkc2sub2JqZWN0czpvcy5vYmplY3Q6Z3JlZ2JpbWJ1Y2tldC9YWFg"},"output":{"formats":[{"type":"svf","views":["2d","3d"]}]}}

这是我返回的错误

HTTP/1.1 400 Bad Request
Result{"diagnostic":"Failed to trigger translation for this file."}

编辑 2:解决方案 看起来 object_id 上传文件时必须有文件扩展名,而不是以 GUI 或随机字符集结尾,这样它才能知道它是什么文件类型。这样就可以转换了。

"objectId" : "urn:adsk.objects:os.object:gregbimbucket/Floor_sm.dwg", 

解决方案 看起来 object_id 上传文件时必须有文件扩展名并且不能以 GUI 或随机字符集结尾,这样它才能知道它是什么文件类型。