我想通过以下Graph API (Beta)向团队频道发送多行消息:
POST /teams/{id}/channels/{id}/messages
我已经尝试通过 发送以下内容chatMessage.body
,但我仍然可以将所有内容集中在一行中。
{
"contentType": "text",
"content": "Line 1\nLine 2\nLine 3"
}
和
{
"contentType": "text",
"content": "Line 1\r\nLine 2\r\nLine 3"
}
我在这里错过了什么还是不支持?
更新:
我想用contentType
as实现多行内容text
。