🎨 #2827 【企业微信】新增几个企业微信第三方回调的事件常量

This commit is contained in:
Nobody 2022-09-26 23:10:02 +08:00 committed by GitHub
parent 320bbfe7be
commit 26e2cbcb60
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 28 additions and 0 deletions

View File

@ -1136,6 +1136,11 @@ public enum WxOpenErrorMsgEnum {
*/
CODE_40222(40222, "invalid request idc domain"),
/**
* empty media cover, please check the media
*/
CODE_40229(40229, "媒体封面为空,请添加媒体封面"),
/**
* 缺少 access_token 参数 access_token missing
*/

View File

@ -33,6 +33,21 @@ public class WxCpTpConsts {
*/
public static final String CANCEL_AUTH = "cancel_auth";
/**
* 企业互联共享应用事件回调
*/
public static final String SHARE_AGENT_CHANGE = "share_agent_change";
/**
* 重置永久授权码通知
*/
public static final String RESET_PERMANENT_CODE = "reset_permanent_code";
/**
* 应用管理员变更通知
*/
public static final String CHANGE_APP_ADMIN = "change_app_admin";
/**
* 通讯录变更通知
*/

View File

@ -831,6 +831,14 @@ public class WxMpXmlMessage implements Serializable {
@JacksonXmlProperty(localName = "nsrsbh")
private String nsrsbh;
/**
* 授权用户资料变更
*/
@XStreamAlias("RevokeInfo")
@JacksonXmlProperty(localName = "RevokeInfo")
private String revokeInfo;
/**
* 加密消息
*/