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
ubuntu 20.04
3.2.16-32869
4.7.19
nonebot
get_forword_msg无法正常获取转发信息
import requests import re import json
url = "http://127.0.0.1:3000/get_forward_msg"
payload = json.dumps({ "message_id": 7491567521670112331 }) headers = { 'Content-Type': 'application/json' }
response = requests.request("POST", url, headers=headers, data=payload) response=response.json()
print(response)
正常获取信息内容
The text was updated successfully, but these errors were encountered:
7491567521670112331是哪里来的 注意消息id不是持久化的东西 重启和超过一段时间就会失效
Sorry, something went wrong.
补充上述相关信息后 开发组如果确认问题则会再开启本issue
消息id是在插件触发时获取的 插件原文: debug输出,消息id为cq中的id
已确认 下个版本修复
MliKiowa
No branches or pull requests
系统版本
ubuntu 20.04
QQNT 版本
3.2.16-32869
NapCat 版本
4.7.19
OneBot 客户端
nonebot
发生了什么?
get_forword_msg无法正常获取转发信息
如何复现
import requests
import re
import json
url = "http://127.0.0.1:3000/get_forward_msg"
payload = json.dumps({
"message_id": 7491567521670112331
})
headers = {
'Content-Type': 'application/json'
}
response = requests.request("POST", url, headers=headers, data=payload)
response=response.json()
print(response)
期望的结果?
正常获取信息内容
NapCat 运行日志
OneBot 客户端运行日志
The text was updated successfully, but these errors were encountered: