我需要有关如何提及使用 PTB 的示例

I need example on how to mention using PTB

我需要进一步详细说明这个话题How can I mention Telegram users without a username?

谁能举例说明如何使用 markdown 样式?我也在使用 PTB 库

我要修改的代码

context.bot.send_message(chat_id=-1111111111, text="hi")

好吧,我终于找到了答案。下面的示例应该有效。

context.bot.send_message(chat_id=update.effective_chat.id, 
                         parse_mode = ParseMode.MARKDOWN_V2, 
                         text = "[inline mention of a user](tg://user?id=123456789)")