- wmi_api
- 开发指南
- 账号接口
- 消息接口
- 好友接口
- 标签接口
- 群接口
- 朋友圈接口
- 消息推送
解析消息中的下载信息
开发中
POST
/v1/message/getfiledowninfo
请求参数
Header 参数
token
string
可选
Body 参数application/json
uuid
string
设备ID
newmsgid
string
消息ID
msgcontent
string
消息内容
msgtype
integer
消息类型
示例
{
"uuid": "",
"newmsgid": "",
"msgcontent": "",
"msgtype": 0
}
返回响应
🟢200成功
application/json
Body
code
integer
必需
data
object
必需
AesKey
string
必需
FileURL
string
必需
FileExt
string
必需
FileType
integer
必需
WxId
string
必需
NewMsgId
string
必需
FileSize
string
必需
FileLen
string
必需
FileTitle
string
必需
text
string
必需
rowcount
integer
必需
showmsg
boolean
必需
示例
{
"code": 0,
"data": [
{
"filename": "string",
"filetitle": "string",
"fileurl": "string",
"filelen": "string",
"filesize": "string",
"fileext": "string"
}
],
"message": "string",
"rowcount": 0,
"showmsg": true,
"statusText": "string"
}