上传新项目所需的标题和正文是什么?

时间:2016-06-09 19:15:17

标签: autodesk-data-management autodesk-forge

我正在调用 / data / v1 / projects /:ProjectId:/ storage 端点为Data Management API创建新的存储条目,但我收到了无效/缺少参数。

所需标题&这次工作的主体是什么?

1 个答案:

答案 0 :(得分:1)

使用

调用endpoint / data / v1 / projects /:ProjectId:/ storage

部首:

'Authorization': 'Bearer ' + token,
'Content-Type': 'application/vnd.api+json',
'Accept': 'application/vnd.api+json'

体:

{
    data: {
        type: 'object',
        attributes: {
            name: theFileNameHere
        },
        relationships: {
            target: {
                data: {
                    type: 'folders',
                    id: folderIdHere
                }
            }
        }
    }
}

更多详情here