Skip to content

Commit

Permalink
🆕 binarywang#2161 【公众号】微信推送消息类增加群发接口事件相关字段
Browse files Browse the repository at this point in the history
  • Loading branch information
arthur0201 authored and hywr committed Jun 23, 2021
1 parent 4f5be60 commit b6092db
Show file tree
Hide file tree
Showing 2 changed files with 14 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -156,6 +156,12 @@ public static class MassMsgStatus {
public static final String ERR_20013 = "err(20013)";
public static final String ERR_22000 = "err(22000)";
public static final String ERR_21000 = "err(21000)";
public static final String ERR_30001 = "err(30001)";
public static final String ERR_30002 = "err(30002)";
public static final String ERR_30003 = "err(30003)";
public static final String ERR_40001 = "err(40001)";
public static final String ERR_40002 = "err(40002)";


/**
* 群发反馈消息代码所对应的文字描述.
Expand All @@ -174,6 +180,11 @@ public static class MassMsgStatus {
STATUS_DESC.put(ERR_20013, "涉嫌版权");
STATUS_DESC.put(ERR_22000, "涉嫌互推_互相宣传");
STATUS_DESC.put(ERR_21000, "涉嫌其他");
STATUS_DESC.put(ERR_30001, "原创校验出现系统错误且用户选择了被判为转载就不群发");
STATUS_DESC.put(ERR_30002, "原创校验被判定为不能群发");
STATUS_DESC.put(ERR_30003, "原创校验被判定为转载文且用户选择了被判为转载就不群发");
STATUS_DESC.put(ERR_40001, "管理员拒绝");
STATUS_DESC.put(ERR_40002, "管理员30分钟内无响应,超时");
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -26,6 +26,9 @@ public class WxCpExternalContactInfo implements Serializable {
@SerializedName("follow_user")
private List<FollowedUser> followedUsers;

@SerializedName("next_cursor")
private String nextCursor;

public static WxCpExternalContactInfo fromJson(String json) {
return WxCpGsonBuilder.create().fromJson(json, WxCpExternalContactInfo.class);
}
Expand Down

0 comments on commit b6092db

Please sign in to comment.