你如何使用他们的REST api向Atlassian汇合发表评论?

时间:2015-02-26 10:44:36

标签: rest confluence confluence-rest-api

我尝试使用REST API自动为汇总页面添加评论。

我正在使用Postman测试,即时指向此网址:https://###########.atlassian.net/wiki/rest/api/content/

使用有效的标题,并发布此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"
}

1 个答案:

答案 0 :(得分:4)

这应该有效:

{"type":"comment",
   "container":{
       "id":"[PARENT_ID]",
       "type":"page",
       "status":"current"
   },
   "body":{
      "storage":{
         "value":"[COMMENT_BODY]",
         "representation":"storage"
      }
   }
}