REST上传内容到confluence的格式是什么?
What is the format to upload content to confluence by REST?
我找到了一些关于 Confluence 的 REST 接口的信息 (https://docs.atlassian.com/atlassian-confluence/REST/6.6.0/#content-update),但我还没有理解应该创建或更新的页面内容需要哪种格式。
是HTML吗?或者 Confluence Wiki 标记?或者别的什么?
请注意,我对 Confluence Cloud 不感兴趣,只对前提感兴趣。
rest/api/content/
接受
{
"type": "page",
"title": "`some title",
"space": {
"key": "ICXMV"
},
"body": {
"wiki": {
"value": "h1. Hello world!",
"representation": "wiki"
}
}
}
因此可以上传 Confluence Wiki 格式的内容。
我找到了一些关于 Confluence 的 REST 接口的信息 (https://docs.atlassian.com/atlassian-confluence/REST/6.6.0/#content-update),但我还没有理解应该创建或更新的页面内容需要哪种格式。
是HTML吗?或者 Confluence Wiki 标记?或者别的什么?
请注意,我对 Confluence Cloud 不感兴趣,只对前提感兴趣。
rest/api/content/
接受
{
"type": "page",
"title": "`some title",
"space": {
"key": "ICXMV"
},
"body": {
"wiki": {
"value": "h1. Hello world!",
"representation": "wiki"
}
}
}
因此可以上传 Confluence Wiki 格式的内容。