上传新项目需要 headers 和 body 是什么?

What are the required headers and body to upload a new item?

我正在调用 /data/v1/projects/:ProjectId:/storage 端点来为数据管理 API 创建一个新的存储条目,但是我'我正在获取 invalid/missing 个参数。

此调用需要什么 header 和 body?

调用端点/data/v1/projects/:ProjectId:/storage

Header:

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

Body:

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

更多详情here