Home > database >  Is it possibile to have both InlineKeyboard and ReplyKeyboard on telegram?
Is it possibile to have both InlineKeyboard and ReplyKeyboard on telegram?

Time:01-18

Is it possible to have both keyboards (telegram.InlineKeyboard and telegram.ReplyKeyboard) under a single message?

Thanks

CodePudding user response:

no, that's not possible. the reply_markup parameter of send_message & friends only accepts one keyboard. The closest you can get is to send two messages with one keyboard each and delete the message with the ReplyKeyboardMarkup right away.

  •  Tags:  
  • Related