当我使用ReplyKeyboardMarkup时,如何在Telegram Bot Api中获得ReplyMessage?

时间:2016-09-11 16:03:20

标签: telegram telegram-bot

我创建了一个简单的问题 - > answer命令。

用Ruby编写代码

我像这样向用户发送消息:

HTTP.post(bot_send_message_uri, :json => {
                'chat_id'=> message['chat']['id'],
                'text'=> "You sure?",
                'reply_markup'=> {
                    'force_reply' => true,
                    'keyboard'=> [['Yes!'],['No!']],
                    'one_time_keyboard'=> true,
                    'selective'=> true
                }
            })

如何找出用户对邮件的响应方式?

1 个答案:

答案 0 :(得分:0)

您可以使用here中的内联键盘。 然后,您可以使用电报API中的update对象从用户那里获取数据。