电报机器人:强制反应后如何获得用户反馈?

时间:2018-02-06 16:59:44

标签: python telegram

SQL80001: Incorrect syntax near 'SELECT'

在我使用这些方法并发送回复标记消息后,我该如何获取用户的回复文本(如用户反馈)?我应该使用哪种方法?

我现在使用pyTelegramBotAPI作为Python Wrapper。

2 个答案:

答案 0 :(得分:0)

它将回复正常消息。

内联键盘应使用CallBackQuery来处理它。

这样只需使用message_id识别所有消息并执行您想要的操作。

答案 1 :(得分:0)

使用php中的方法-我认为您可以将其转换为python;

switch($reply_to_message_text)
   case 'Send me another word:':
        $usersreply =  $message ;
        $this->db->addfeedback($user_id,$usersreply)

     --------->here you can send some text to user and say Thanks)