0

我正在尝试使用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."
}

我在这里错过了什么吗?

4

1 回答 1

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/

干杯,

亚当

于 2016-06-10T14:36:45.990 回答