有一个代码:
def message_start(bot,event):
bot.send_text(chat_id=event.from_chat, text = START_MESSAGE)
def start_meeting(bot):
bot.dispatcher.add_handler(StartCommandHandler(callback=message_start))
使用 command/start
时,它会向用户发送一条消息。因为 该机器人与聊天一起工作,它也在其中做出反应。例如,在电报的 aiogram 中,有一些过滤器允许您严格限制机器人的范围。如何在 ICQ NEW Bot API 上做类似的事情?
决定这样:
我厚颜无耻地检查命令来自哪里,如果这是我的聊天,那么检查不会显示结果,但我认为这个创建是一个凶猛的拐杖,如果有人知道更好的解决方案,请帮助。