发送图片消息
POST
/gewe/v2/api/message/postImage注意
发送图片接口会返回cdn相关的信息,如有需求同一张图片发送多次,第二次及以后发送时可使用接口返回的cdn信息拼装xml调用转发图片接口,这样可以缩短发送时间
请求参数
Header 参数
X-GEWE-TOKEN
string
必需
示例值:
{{gewe-token}}
Body 参数application/json
appId
string
设备ID
toWxid
string
好友/群的ID
imgUrl
string
图片链接
示例
{
"appId": "{{appid}}",
"toWxid": "34757816141@chatroom",
"imgUrl": "http://dummyimage.com/400x400"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
ret
integer
必需
msg
string
必需
data
object
必需
toWxid
string
接收人的wxid
createTime
integer
发送时间
msgId
integer
消息ID
newMsgId
integer
消息ID
type
null
消息类型
aesKey
string
必需
cdn相关的aeskey
fileId
string
必需
cdn相关的fileid
length
integer
图片文件大小
width
integer
图片宽度
height
integer
图片高度
md5
string
图片md5
示例
{
"ret": 200,
"msg": "操作成功",
"data": {
"toWxid": "34757816141@chatroom",
"createTime": 0,
"msgId": 640355969,
"newMsgId": 8992614056172360000,
"type": null,
"aesKey": "7678796e6d70626e6b626c6f7375616b",
"fileId": "3052020100044b30490201000204e49785f102033d11fd0204136166b4020465966eea042437646265323234362d653662662d343464392d393363362d3139313661363863646266390204052418020201000400",
"length": 1096,
"width": 400,
"height": 400,
"md5": "e6355eab0393facbd6a2cde3f990ef60"
}
}
最后修改时间: 7 个月前