我想通过以下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
作为text
来实现多行内容。
答案 0 :(得分:0)
这应该有效。
{
"contentType": "html",
"content": "Line 1<br/>\nLine 2"
}
答案 1 :(得分:0)
请尝试以下操作:
Line 1\n\nLine2