Confluence REST API - 在按标题检索页面时扩展页面主体

时间:2015-12-18 10:53:47

标签: rest confluence confluence-rest-api

我正在使用最新的REST API访问title的Confluence页面。要检索某些字段的更多详细信息,我将传递expand参数(请参阅enter image description here):

https://xyz.atlassian.net/wiki/rest/api/content/?title=Architecture&spaceKey=XX&expand=body

https://xyz.atlassian.net/wiki/rest/api/content/?title=Architecture&spaceKey=XX&expand=body.view

但结果并未在找到的页面主体上保留任何信息。

请注意,这仅适用于使用页面ID的请求。使用标题检索页面的线程与搜索结果类似,因此扩展功能似乎不起作用。根据文档,它应该按照我的例子工作。我错过了什么吗?

1 个答案:

答案 0 :(得分:2)

您需要指定" body"的类型。你想要在扩展参数。

在你的情况下,像这样:

https://xyz.atlassian.net/wiki/rest/api/content/?title=Architecture&spaceKey=XX&expand= body.view

https://xyz.atlassian.net/wiki/rest/api/content/?title=Architecture&spaceKey=XX&expand= body.export_view

可能的值是:

  • 编辑
  • export_view
  • anonymous_export_view
  • 视图
  • 存储