将文件格式转换为SFV的假定范围是什么?

时间:2019-05-22 14:56:18

标签: authorization autodesk-forge autodesk-model-derivative

我从以下位置开始学习本教程: https://forge.autodesk.com/en/docs/model-derivative/v2/tutorials/prepare-file-for-viewer/

,我陷入了将文件翻译成SVF的困境。我已经尝试过data:write,data:create,bucket:update范围,但是每次得到:

令牌没有此请求的特权。

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

2 个答案:

答案 0 :(得分:0)

您将同时需要两个data:read and (data:write or data:create)(以空格分隔)-请参阅文档here

curl -v 'https://developer.api.autodesk.com/authentication/v1/authenticate'
  -X 'POST'
  -H 'Content-Type: application/x-www-form-urlencoded'
  -d '
    client_id=obQDn8P0GanGFQha4ngKKVWcxwyvFAGE&
    client_secret=eUruM8HRyc7BAQ1e&
    grant_type=client_credentials&
    scope=data:read%20data:write
  '

在创建Forge应用程序时是否选择了Model Derivative API-如果没有,请重新开始并再次创建该应用程序: enter image description here

答案 1 :(得分:0)

谢谢, 我也遇到了一些不同的翻译错误,但事实证明,模型衍生API不支持.rfa文件。

但总的来说算是成功