我正在尝试创建我的第一个机器人...我遇到了这个...我不知道如何禁用电报消息中的链接预览。我找不到如何做到这一点。 我正在使用 https://github.com/python-telegram-bot/python-telegram-bot
例如,我尝试过这个:
import logging
from telegram.ext import Updater, CommandHandler, MessageHandler, Filters
.
.
.
def link(update, context):
update.message.reply_html(
text=f"<a href='{link_to_send}'>This is an example</a>",
)
.
.
.
但链接已预览。我尝试添加参数disable_web_page_preview=None,正如我在https://docs.python-telegram-bot.org/en/v20.0a4/telegram.message.html上看到的那样,但在我的情况下,它不被识别为一个参数。我哪里错了?