您如何 post 使用 REST api 对 Atlassian confluence 发表评论?
How do you post a comment to Atlassian confluence using their REST api?
我正在尝试使用 REST API.
自动向汇合页面添加评论
我正在使用 Postman 进行测试,我指着这个 url:https://###########.atlassian.net/wiki/rest/api/content/
使用有效的 headers,并发布此 json:
{
"type":"comment",
"container":"72025106",
"body":{
"storage":{
"value":"auto comment 1",
"representation":"storage"
}
}
}
当我这样做时,我得到了这个错误:
{
"statusCode": 500,
"message": "java.lang.IllegalStateException: Must provide id and type for Content"
}
这应该有效:
{"type":"comment",
"container":{
"id":"[PARENT_ID]",
"type":"page",
"status":"current"
},
"body":{
"storage":{
"value":"[COMMENT_BODY]",
"representation":"storage"
}
}
}
我正在尝试使用 REST API.
自动向汇合页面添加评论我正在使用 Postman 进行测试,我指着这个 url:https://###########.atlassian.net/wiki/rest/api/content/
使用有效的 headers,并发布此 json:
{
"type":"comment",
"container":"72025106",
"body":{
"storage":{
"value":"auto comment 1",
"representation":"storage"
}
}
}
当我这样做时,我得到了这个错误:
{
"statusCode": 500,
"message": "java.lang.IllegalStateException: Must provide id and type for Content"
}
这应该有效:
{"type":"comment",
"container":{
"id":"[PARENT_ID]",
"type":"page",
"status":"current"
},
"body":{
"storage":{
"value":"[COMMENT_BODY]",
"representation":"storage"
}
}
}