gpt4 book ai didi

rest - 您如何使用他们的 REST api 向 Atlassian confluence 发表评论?

转载 作者:行者123 更新时间:2023-12-02 08:29:23 30 4
gpt4 key购买 nike

我正在尝试使用 REST API 在 confluence 中自动向页面添加评论。

我正在使用 Postman 进行测试,我指向这个网址:https://###########.atlassian.net/wiki/rest/api/content/

使用有效的 header ,并发布此 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 - 您如何使用他们的 REST api 向 Atlassian confluence 发表评论?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28740312/

30 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com