Telegram 客户端可以与移动屏幕键盘交互吗?

Can Telegram client interact with mobile onscreen keyboard?

我使用 python-telegram-bot 包装器在 Python 中编写 Telegram 机器人。 在某些情况下,我需要用户输入(纯文本,只有数字)。

是否可以指定我需要某种类型的屏幕键盘的移动 Telegram 客户端,类似于键盘响应 phone、URL 的输入字段的方式, 电子邮件等 ?

当我使用 bot.sendMessage() 方法时,我只能使用 ReplyKeyboardRemove 设置和取消设置我的自定义键盘,但我看不到指定屏幕键盘类型的方法。

经过一些研究,我发现这很可能是不可能的。 Telegram 机器人只能与可以隐藏回复界面的 ForceReply method which can tell client to display a reply interface to the user (act as if the user has selected the bot‘s message and tapped ’Reply') and ReplyKeyboardRemove 屏幕键盘交互,但不幸的是,我看不到在移动设备上指定软键盘类型的方法。

但是,如果您找到了一种方法 - 如果您将其写为答案,我将不胜感激。