我正在用 C# 开发一个电报机器人。TelegramBotClient
使用库中的类Telegram.Bot
。
我想使用 HTML 选项发送消息SendTextMessageAsync
。在官方文档(https://core.telegram.org/bots/api#markdown-style)中我可以看到:
string texto = @"<b>bold</b>, <strong> bold </strong>" + @"<i> italic </i>, <em> italic </em>" + @"<a href = 'http://www.example.com/'> inline URL </a>" + @"<a href = 'tg://user?id=123456789'> inline mention of a user</a>" + @"<code> inline fixed-width code </code>" + @"<pre> pre - formatted fixed-width code block</pre>"; Bot.SendTextMessageAsync(chatId: id_chat, text: texto, parseMode: ParseMode.HTML);
它工作正常,但我想使用“新行”和“列表”。我在 telegram 官方通知上看到过它们,如下图所示:
我已经尝试过<br>, </br>, <br/>
...等等。
但我已经得到了
Telegram.Bot.Exceptions.ApiRequestException:'错误请求:无法解析实体:字节偏移量 36 处出现意外的结束标记
有谁知道是否可以做到?
另外如果可以链接一下电话号码吗?
慕田峪4524236
肥皂起泡泡
动漫人物
相关分类