发送文字消息
POST
/gewe/v2/api/message/postText注意
在群内发送消息@某人时,content中需包含@xxx
请求参数
Header 参数
X-GEWE-TOKEN
string
必需
示例值:
{{gewe-token}}
Body 参数application/json
appId
string
设备ID
toWxid
string
好友/群的ID
content
string
消息内容
ats
string
可选
@的好友,多个英文逗号分隔。群主或管理员@全部的人,则填写'notify@all'
示例
{
"appId": "{{appid}}",
"toWxid": "34757816141@chatroom",
"ats": "wxid_phyyedw9xap22",
"content": "@猿猴 我在测试艾特内容"
}
示例代码
返回响应
成功(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
ret
integer
必需
msg
string
必需
data
object
必需
toWxid
string
接收人的wxid
createTime
integer
发送时间
msgId
integer
消息ID
newMsgId
integer
消息ID
type
integer
消息类型
示例
{
"ret": 200,
"msg": "操作成功",
"data": {
"toWxid": "34757816141@chatroom",
"createTime": 1703841160,
"msgId": 0,
"newMsgId": 3768973957878705000,
"type": 1
}
}
最后修改时间: 5 个月前