Skip to content

新增企业微信第三方事件回调常量 #2827

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 12 commits into from
Sep 26, 2022
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -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
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,6 +33,21 @@ public static class InfoType {
*/
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";

/**
* 通讯录变更通知
*/
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -831,6 +831,14 @@ public class WxMpXmlMessage implements Serializable {
@JacksonXmlProperty(localName = "nsrsbh")
private String nsrsbh;


/**
* 授权用户资料变更
*/
@XStreamAlias("RevokeInfo")
@JacksonXmlProperty(localName = "RevokeInfo")
private String revokeInfo;

/**
* 加密消息
*/
Expand Down