【发布时间】:2018-03-10 11:29:04
【问题描述】:
我正在尝试使用此端点 link 重命名 BIM360 帐户上的文件
但每个请求都会返回此消息:
{
"jsonapi":{
"version":"1.0"
},
"errors":[
{
"id":"8b976b03-ed82-425b-819d-e0e62f931182",
"status":"400",
"code":"BAD_INPUT",
"title":"One or more input values in the request were bad",
"detail":"Request input is invalid for this operation."
}
]
}
使用方法:
public async Task RenameFile(string newFileName, string projectId, string itemId)
{
if (string.IsNullOrEmpty(projectId) || string.IsNullOrEmpty(itemId) ||
string.IsNullOrEmpty(newFileName)) return;
var body = JObject.FromObject(new {
jsonapi = new
{
version = "1.0"
},
data = new
{
type = "items",
id = itemId,
attributes = new
{
displayName = newFileName
}
}
});
var client = new RestClient(BaseUrl);
var request = new RestRequest("/data/v1/projects/{project_id}/items/{item_id}", Method.PATCH);
request.AddHeader("Authorization", "Bearer " + TokenBim360.AccessToken);
request.AddUrlSegment("project_id", projectId);
request.AddUrlSegment("item_id", itemId);
request.AddParameter("application/vnd.api+json", body.ToString(Formatting.None), ParameterType.RequestBody);
var response = await client.ExecuteTaskAsync(request);
}
最奇怪的是,相同的代码在 A360 中运行良好...
我做错了什么?
【问题讨论】:
标签: autodesk-forge autodesk-data-management autodesk-bim360