将文件格式转换为 SFV 的假定范围是什么?
What is the supossed scope for translating file format to SFV?
我正在学习以下教程:
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"
]
}
]
}
}
您将需要 data:read and (data:write or data:create)
(由 space 分隔)- 请参阅文档 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 应用程序时 select 模型导数 API - 如果没有,请重新开始并重新创建应用程序:
谢谢,
我 运行 也有一些不同的翻译错误,但事实证明模型导数 API.
不支持 .rfa 文件
但总而言之,一切顺利
我正在学习以下教程: 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"
]
}
]
}
}
您将需要 data:read and (data:write or data:create)
(由 space 分隔)- 请参阅文档 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 应用程序时 select 模型导数 API - 如果没有,请重新开始并重新创建应用程序:
谢谢, 我 运行 也有一些不同的翻译错误,但事实证明模型导数 API.
不支持 .rfa 文件但总而言之,一切顺利