我创建了一个简单的问题 - > 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
}
})
如何找出用户对邮件的响应方式?