如何通过REST API向Atlassian Confluence(Cloud)添加注释并保留标记格式?

时间:2017-05-26 04:33:09

标签: confluence confluence-rest-api

我在包含Atlassian标记语言的纯文本文件中有注释,如下所示:

An {{Unexpected end of socket}} \\nis a *TCP/IP* error message.

当我提交REST API请求以添加此类注释时,使用以下JSON blurb:

{"type": "comment", 
 "container": {"type": "page", 
               "id": "123456789", 
               "status": "current"}, 
"body": {"storage": {"value": "An {{Unexpected end of socket}} \\nis a *TCP/IP* error message.", 
"representation": "storage"}}}

它被呈现为带有大括号,星号和其他标记的文本(好吧,除了\\ n被删除,这也不好):

  

{{意外的套接字结束}}是 TCP / IP 错误消息。

理想情况下,我想在Confluence评论中看到这一点:

Unexpected end of socket
TCP / IP 错误消息。

有什么建议吗?

谢谢,基里尔

0 个答案:

没有答案