#1239 增加微信小程序订阅消息发送接口

This commit is contained in:
S
2019-10-16 11:12:23 +08:00
committed by Binary Wang
parent e33601ce78
commit 902ba61e73
8 changed files with 199 additions and 4 deletions

View File

@@ -444,6 +444,14 @@ public enum WxMaErrorMsgEnum {
CODE_85064(85064, "找不到模版/草稿"),
CODE_85065(85065, "模版库已满"),
/**
* 小程序订阅消息错误码
* https://developers.weixin.qq.com/miniprogram/dev/api-backend/open-api/subscribe-message/subscribeMessage.send.html
*/
CODE_43101(43101, "用户拒绝接受消息,如果用户之前曾经订阅过,则表示用户取消了订阅关系"),
CODE_47003(47003, "模板参数不准确可能为空或者不满足规则errmsg会提示具体是哪个字段出错"),
;
private int code;