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
v1.0.0-beta8-fix2
Windows (64)
ARM [64] (别名:AArch64 / ARMv8)
HTTP
1 | Android Phone
使用/set_group_add_request接口
正常处理入群申请
显示flag不存在。将得到的消息flag通过api回调,得到结果如下:
{"data":null,"msg":"FLAG_NOT_FOUND","retcode":100,"status":"failed","wording":"FLAG不存在"}
def 入群申请(QQ, 群号, flag, sub_type): if 群号 == *: requests.get(url="http://127.0.0.1:3483/set_group_add_request?flag={0}&sub_type={1}".format(flag, sub_type))
处理群系统消息失败: 消息 1639190095763269 不存在. (只有这一条)
与 #1016 #1241 完全相同,但是从1016中并没有找到有效的解决办法 对flag参数加上双引号或者单引号报错依旧
The text was updated successfully, but these errors were encountered:
see #1241
Sorry, something went wrong.
p1 := p.Get("[sub_type,type].0").String()
修改成 p1 := p.Get("sub_type").String()
原因获取不到sub_type或type的值
p1 := p.Get("[sub_type,type].0").String() 修改成 p1 := p.Get("sub_type").String() 原因获取不到sub_type或type的值
p1 := p.Get("[sub_type,type].0").String()应该没有问题
fix: support join query from http query&form
be3b17d
Fixes #1241 Fixes #1325
p1 := p.Get("[sub_type,type].0").String() 修改成 p1 := p.Get("sub_type").String() 原因获取不到sub_type或type的值 p1 := p.Get("[sub_type,type].0").String()应该没有问题
嗯,代码是没问题..
具体原因是get和post问题 用post 提交json就没问题了
No branches or pull requests
请确保您已阅读以上注意事项,并勾选下方的确认框。
go-cqhttp 版本
v1.0.0-beta8-fix2
运行环境
Windows (64)
运行架构
ARM [64] (别名:AArch64 / ARMv8)
连接方式
HTTP
使用协议
1 | Android Phone
重现步骤
使用/set_group_add_request接口
期望的结果是什么?
正常处理入群申请
实际的结果是什么?
显示flag不存在。将得到的消息flag通过api回调,得到结果如下:
{"data":null,"msg":"FLAG_NOT_FOUND","retcode":100,"status":"failed","wording":"FLAG不存在"}
简单的复现代码/链接(可选)
日志记录(可选)
补充说明(可选)
与
#1016
#1241
完全相同,但是从1016中并没有找到有效的解决办法
对flag参数加上双引号或者单引号报错依旧
The text was updated successfully, but these errors were encountered: