如何使用电报机器人创建超链接?

时间:2020-06-27 13:16:46

标签: python telegram telegram-bot

我想创建一个名为ABC的超链接,它将使用python中的电报API将您带到http://example.com/

1 个答案:

答案 0 :(得分:2)

You can use formatting option to do this

示例:

from telegram import ParseMode

bot.send_message(chat_id=chat_id, text="<a href='http://example.com/'>ABC</a>", 
                  parse_mode=telegram.ParseMode.HTML)