我想创建一个名为ABC的超链接,它将使用python中的电报API将您带到http://example.com/。
答案 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)