我们在节点js中使用Microsoft BotBuilder实现了一个Bot,以主动向Skype发送消息给业务用户。我们要求发送很少格式化的文本,如- Bold,意大利语,和换行(新的Line),但似乎Android Skype不支持任何这些格式。在所有平台(iOS、Android和MAC)中,所有的Html格式都显示为原始HTML。到目前为止,我们已经尝试了以下发送格式化文本的方法。
//1 using \n\n
var msgToSend = new builder.Message()
.text("Hello \n\n World!");
//2 using unicodes
var msgToSend = new builder.Message()
.text("Hello \u0085 \u2028 World!");
//using html formatting
var msgToSend = new builder.Message()
.text("Hello </br> World!");
bot.loadSession(addr1, function (err, session) {
bot.send(msgToSend);
});
我们成功地为商业客户端发送了新的行文本到Mac、iOS和Windows,但这些似乎都不适用于Android。任何帮助,如果发送格式化文本到android将不胜感激。
https://stackoverflow.com/questions/48303796
复制相似问题