如何在 Confluence REST API 中导出带有注释的 space?
How to export space with comments in Confluence REST API?
我正在使用此 REST URL 导出整个 space:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.view.value&os_authType=basic
但是我找不到在响应中包含页面评论的方法。
编辑:我找到了如何获取评论但无法获取评论正文:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.storage.content.children.comment,container,metadata.labels&os_authType=basic
现在的问题是试图扩展评论正文。这个URL:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.view.value,body.storage.content.children.comment.body,body.storage.content.children.comment.version,container,metadata.labels&os_authType=basic
出现此错误:
{
statusCode: 500,
message: "java.lang.IllegalArgumentException: Cannot recursively expand : body"
}
经过广泛的研究,我得出结论这是不可能的。
我正在使用此 REST URL 导出整个 space:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.view.value&os_authType=basic
但是我找不到在响应中包含页面评论的方法。
编辑:我找到了如何获取评论但无法获取评论正文:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.storage.content.children.comment,container,metadata.labels&os_authType=basic
现在的问题是试图扩展评论正文。这个URL:
/rest/api/content?spaceKey=TD&limit=50&expand=title,version,body.storage.value,body.view.value,body.storage.content.children.comment.body,body.storage.content.children.comment.version,container,metadata.labels&os_authType=basic
出现此错误:
{
statusCode: 500,
message: "java.lang.IllegalArgumentException: Cannot recursively expand : body"
}
经过广泛的研究,我得出结论这是不可能的。