用户在Telegram Bot中的非命令性答案成为PM

时间:2018-07-30 21:59:21

标签: python python-3.x telegram telegram-bot python-telegram-bot

我有一个python Telegram机器人,我想创建一个命令,让Bot向用户询问问题,然后Bot应将答案作为PM发送给我。现在我想知道如何获得答案/非命令性消息?

def Command(bot, update):
bot.send_message(chat_id=update.message.chat_id, text="How are you?")
bot.send.message(chat_id= <MY CHAT_ID>, text=update.message.text)

我这样尝试过,但是现在Bot给我发送了'/ Command input',而不是问题的答案。

1 个答案:

答案 0 :(得分:0)