我用python制作了一个电报机器人,它发送的消息类似于
if message == '/start':
bot.sendMessage(chat_id, "Insert your name:")
a = 'name'
if a == 'name' and message != '/start'
name_user = message
bot.sendMessage(chat_id, "Insert your birthday:")
a = 'birth'
and so on for other information...
当两个用户同时使用我的机器人时出现问题,因为第一个用户更改了‘a’,所以第二个用户从出生开始,而不是从名字开始,有人能帮我吗?
使用用户ID存储。
a[chat_id] = name
这篇关于如何在一个电报机器人中管理更多的用户?的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持跟版网!