订阅消息模版
收藏
我的收藏接口说明
- 1.查询订阅消息模版库
- 2.查询小程序已添加的模版列表
- 3.添加订阅消息模版
- 4.删除已添加的订阅消息模版
- 5.新建订阅消息模版
- 6.查询新建订阅消息模版列表
新建订阅消息模版审核结果通知
新建订阅消息模版审核结果出来之后,会自动触发消息发送,然后开放平台服务器会向第三方小程序应用的【消息与事件接收 URL】以 HTTP POST 方式推送相应授权小程序的新建订阅消息模版的审核结果。
POST 数据示例:
{ "Nonce": "4464221", "TimeStamp": "1535551395", "Encrypt": "Encrypt Message xxxxxxxx", "MsgSignature": "ba394c04acece6c2c0edee058c5dddf82474b8ee" }
{ "AppId": "授权小程序的appid", "TpAppId": "第三方小程序应用appid", "EventTime": "2019-01-14 12:45:10", "Event": "CREATE_SUBSCRIBE_NOTIFICATION_TEMPLATE_RESULT", "EventContent": { "title": "xxx", "keyword_list": ["xx", "xxx"], "stauts": 1, "reject_reason_list": ["xxx", "xxx"] } }
消息体字段含义如下:
参数名 | 参数类型 | 备注 | |
AppId | string | 授权小程序 appid | |
TpAppId | string | 第三方小程序应用 appid | |
EventTime | string | 推送事件时间 | |
Event | string | 推送事件类型 | |
EventContent | object | 订阅消息模版的审核结果 | |
| title | string | 模版标题 |
| keyword_list | array<string> | 模版关键词列表 |
| stauts | number | 审核状态 1:审核中 2:审核通过 3:审核拒绝 |
| reject_reason_list | array<string> | 审核拒绝原因 |