Skip to content
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

【企业微信】获取访问用户敏感信息接口中增加地址和企业邮箱字段 #2854

Merged
merged 2 commits into from
Oct 25, 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 @@ -28,10 +28,25 @@ public class WxCpUser implements Serializable {
private Integer[] orders;
private String position;
private String[] positions;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String mobile;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private Gender gender;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String email;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String bizMail;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String avatar;
private String thumbAvatar;
private String mainDepartment;
Expand All @@ -41,7 +56,7 @@ public class WxCpUser implements Serializable {
private String openUserId;

/**
* 地址。长度最大128个字符
* 地址。长度最大128个字符,代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String address;
private String avatarMediaId;
Expand All @@ -61,6 +76,9 @@ public class WxCpUser implements Serializable {
private Integer hideMobile;
private String englishName;
private String telephone;
/**
* 代开发自建应用类型于2022年6月20号后的新建应用将不再返回此字段,需要在【获取访问用户敏感信息】接口中获取
*/
private String qrCode;
private Boolean toInvite;
/**
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -25,7 +25,7 @@ public class WxCpUserDetail implements Serializable {
private String userId;

/**
* 成员姓名
* 成员姓名,2022年6月20号后的新应用将不再返回此字段,旧应用正常返回
*/
private String name;

Expand Down Expand Up @@ -55,4 +55,15 @@ public class WxCpUserDetail implements Serializable {
@SerializedName("qr_code")
private String qrCode;

/**
* 企业邮箱,仅在用户同意snsapi_privateinfo授权时返回,2022年6月20号后的新应用将返回
*/
@SerializedName("biz_mail")
private String bizMail;

/**
* 地址,仅在用户同意snsapi_privateinfo授权时返回,2022年6月20号后的新应用将返回
*/
private String address;

}