-
Notifications
You must be signed in to change notification settings - Fork 2
推送api v4
huang wei edited this page Aug 27, 2018
·
3 revisions
post /api/v4/pushes/wechat
Parameters
Name | Type | Description |
---|---|---|
openids | Array | Required 接收用户的openid的集合 |
news_entity | Object | 微信客服消息 |
template_entity | Object | 微信模板消息 |
news_entity
、template_entity
两者必须有一个。如果都存在,微信推送会先尝试客服消息,当客服消息失败时,再尝试模板消息
news_entity 结构
结构固定,以下4个key都是必须的,具体意思参考微信客服消息
{
"title":"Happy Day",
"description":"Is Really A Happy Day",
"url":"URL",
"picurl":"PIC_URL"
}
template_entity 结构
结构固定,但
data
的实际结构会根据模板而改变,具体意思参考微信模板消息
{
"template_id": "7L5ZG7D0VtqOnKp07bskkJ7XA7veVqIO2VYeY3aYLtY",
"url": "http://weixin.qq.com/download",
"data": {
"first": {
"value": "恭喜你购买成功!",
"color": "#173177"
},
"keyword1": {
"value": "巧克力",
"color": "#173177"
},
"keyword2": {
"value": "39.8元",
"color": "#173177"
},
"remark": {
"value": "欢迎再次购买!",
"color": "#173177"
}
}
}
Response
Status: 200 OK
no body