We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
1.3.1
Windows (64)
x86
WebSocket (反向)
0 | Default
让qq机器人所在的群进入新群员
qq机器人上报“有人进群”的event字典
没有上报任何event字典,相当于qq群没有新成员进入
import json from sanic import Sanic app = Sanic('qqbot') @app.websocket('/qqbot') async def qqbot(request, 机器人): while True: dic1 = await 机器人.recv() dic = json.loads(dic1) print(json.dumps(dic, indent=4, ensure_ascii=False)) if dic.get('notice_type') == 'group_increase': user_id=dic['user_id'] group_id=dic['group_id'] print('有人进群了,qq号为:'+user_id) if __name__ == '__main__': app.run(debug=True, auto_reload=True)
该qq机器人就算是管理员身份也无法识别到有人进群这个event事件
The text was updated successfully, but these errors were encountered:
No branches or pull requests
请确保您已阅读以上注意事项,并勾选下方的确认框。
go-cqhttp 版本
1.3.1
运行环境
Windows (64)
运行架构
x86
连接方式
WebSocket (反向)
使用协议
0 | Default
重现步骤
让qq机器人所在的群进入新群员
期望的结果是什么?
qq机器人上报“有人进群”的event字典
实际的结果是什么?
没有上报任何event字典,相当于qq群没有新成员进入
简单的复现代码/链接(可选)
日志记录(可选)
补充说明(可选)
该qq机器人就算是管理员身份也无法识别到有人进群这个event事件
The text was updated successfully, but these errors were encountered: