我一直在尝试使用qrs将现有的自定义属性添加到现有的应用程序中。我已经为customProperties数组尝试了许多不同的格式。我正在尝试将自定义属性添加到应用程序的第3天。
我收到错误消息:收到错误代码:400 ::“ GetAllByMany”操作失败。
我的代码是:
function setTheProps(appId, lastModifiedDate){
var jsonArr = [];
jsonArr.push({
modifiedDate: lastModifiedDate, //this is the modifiedDate retrieved from the app
modifiedByUserName: "my\\un",
value: "Node C"
});
console.log(props);
console.log(jsonArr);
trt.Put('/app/' + appId,
{
"modifiedDate": lastModifiedDate, // this is key, and is what's causing the 409 CONFLICT if missing
"customProperties":
jsonArr
},
'json'
).then(function(result)
{
console.log(result.body);
})
.catch(function(error)
{
console.log('node customProps error: ' +error);
process.exit(0);
});
}