无法触发DWF文件到STEP的转换

时间:2016-06-10 14:34:02

标签: autodesk-forge autodesk-model-derivative

我正在尝试使用Model Derivative API

将我的.DWF文件翻译为STEP
{
    "input": {
        "urn":"<<DWF URN HERE>>"
    },
    "output": {
        "destination": {
            "region": "us"
        },
        "formats": [
        {
            "type": "step"
        }]
    }
}

但请求因此回复而失败:

{
  "diagnostic": "Failed to trigger translation for this file."
}

我在这里遗漏了什么吗?

1 个答案:

答案 0 :(得分:1)

STEP导出格式目前不适用于DWF文件:(

在这里,您可以找到所有设计文件格式的列表以及它们支持的导出文件格式: https://developer.autodesk.com/en/docs/model-derivative/v2/overview/supported-translations/

您还可以从此处以编程方式访问此信息: https://developer.autodesk.com/en/docs/model-derivative/v2/reference/http/formats-GET/

干杯,

亚当