作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
这是我在尝试发送包含大量格式化超链接的长 Markdown 消息时遇到的错误:
context.bot.send_message(chat_id=update.effective_chat.id, text=longmsg, parse_mode="MARKDOWN")
#Output:
telegram.error.BadRequest: Entities_too_long
实际消息几乎没有 500 个字符长,但几乎每个单词都有超链接,这使得字符串 longmsg
非常长(>12k 字符串长度)
现在,我知道对于普通消息 4096 个字符是限制,但是在发送 markdown 消息时,Telegram API 似乎允许 > 4096 个字符串长度。那么 Markdown 消息的确切字符串长度限制是多少?我正在使用 python-telegram-bot
库。
最佳答案
9500 characters是通过send_message
发送markdown消息的字符串长度限制,使用暴力测试发现。
关于telegram - 尝试发送长 Markdown 消息时出现 "telegram.error.BadRequest: Entities_too_long"错误。最大字符串长度限制是多少?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/68768069/
这是我在尝试发送包含大量格式化超链接的长 Markdown 消息时遇到的错误: context.bot.send_message(chat_id=update.effective_chat.id, t
我是一名优秀的程序员,十分优秀!