🎨 更新微信公众平台文档地址&增加clientmsgid相关返回码

This commit is contained in:
栈木 2022-01-24 00:10:11 +08:00 committed by GitHub
parent 189ee0925e
commit 74b5f806d0
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 14 additions and 2 deletions

View File

@ -13,7 +13,7 @@ import java.io.Serializable;
/**
* 微信错误码.
* 请阅读
* 公众平台<a href="http://mp.weixin.qq.com/wiki/10/6380dc743053a91c544ffd2b7c959166.html">全局返回码说明</a>
* 公众平台<a href="https://developers.weixin.qq.com/doc/offiaccount/Getting_Started/Global_Return_Code.html">全局返回码说明</a>
* 企业微信<a href="https://work.weixin.qq.com/api/doc#10649">全局错误码</a>
*
* @author Daniel Qian & Binary Wang

View File

@ -8,7 +8,7 @@ import java.util.Map;
/**
* <pre>
* 微信公众平台全局返回码.
* 参考文档<a href="http://mp.weixin.qq.com/wiki/10/6380dc743053a91c544ffd2b7c959166.html">公众平台全局返回码</a>
* 参考文档<a href="https://developers.weixin.qq.com/doc/offiaccount/Getting_Started/Global_Return_Code.html">公众平台全局返回码</a>
* Created by Binary Wang on 2018/5/13.
* </pre>
*
@ -376,6 +376,18 @@ public enum WxMpErrorMsgEnum {
* 非法的tag_id.
*/
CODE_45159(45159, "非法的tag_id"),
/**
* 相同 clientmsgid 已存在群发记录返回数据中带有已存在的群发任务的 msgid
*/
CODE_45065(45065, "相同 clientmsgid 已存在群发记录,返回数据中带有已存在的群发任务的 msgid"),
/**
* 相同 clientmsgid 重试速度过快请间隔1分钟重试
*/
CODE_45066(45066, "相同 clientmsgid 重试速度过快请间隔1分钟重试"),
/**
* clientmsgid 长度超过限制
*/
CODE_45067(45067, "clientmsgid 长度超过限制"),
/**
* 不存在媒体数据.
*/