0

目前我正在发送纯文本消息,如何格式化我在对话中明显发送的文本消息?我是否需要在 REST API 中以某种方式指定不同的内容类型或发送丰富或 html 格式?例如,我想发送换行符 (\r\n) 或将响应格式化为来自 Bot 的列表。

如果可能,请提供一个 curl 工作示例或我可以转移到 Postman 的内容。谢谢!

使用以下 REST API:“ https://circuitsandbox.net/rest/v2/conversations/ConversationID/messages

尝试发送带有换行符的消息

内容:Hello \r\n World" --or-- "内容:"Hello CRLF World"

https://circuitsandbox.net/rest/v2/conversations/<ConversationID>/messages"

"accept", 'application/json'
"content-type", 'application/x-www-form-urlencoded'
"Authorization", "Bearer <Token>"
"content= Hello\r\nWorld"

预期:
Hello
World

实际:
Hello World

4

1 回答 1

1

内容应该是支持有限标签集的 HTML:strong、i、ul、ol、li 和链接。

例如:您可以将内容设置为:

This is a test<br> It can be <strong> formatted</strong> <i>a little</I>
于 2019-09-23T07:19:07.007 回答