I have question in Telegram bot. I want keyboard and inline keyboard , Can enable both of the features at the same time ?
可以将文章内容翻译成中文,广告屏蔽插件可能会导致该功能失效(如失效,请关闭广告屏蔽插件后再试):
问题:
回答1:
According to Telegram documentation, it's currently impossible to pass two or more objects for reply_markup
at the same time. reply_markup
only accepts one of these objects at the same time:
- InlineKeyboardMarkup
- ReplyKeyboardMarkup
- ReplyKeyboardRemove
- ForceReply
And of course you cannot combine two or more objects together. If you wanna show keyboard and have inline keyboard too, you can show the keyboard in a message and after that send another message with inline keyboard.
Cheers,