Skip to content

Commit

Permalink
🎨 #3055 【企业微信】获取访问用户敏感信息接口返回值增加若干字段
Browse files Browse the repository at this point in the history
  • Loading branch information
binarywang committed Jul 8, 2023
1 parent 4092658 commit 736fbd3
Show file tree
Hide file tree
Showing 2 changed files with 25 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,30 @@ public class WxCpTpUserDetail extends WxCpBaseResp {
@SerializedName("qr_code")
private String qrCode;

/**
* 手机,仅在用户同意snsapi_privateinfo授权时返回,第三方应用不可获取
*/
@SerializedName("mobile")
private String mobile;

/**
* 邮箱,仅在用户同意snsapi_privateinfo授权时返回,第三方应用不可获取
*/
@SerializedName("email")
private String email;

/**
* 企业邮箱,仅在用户同意snsapi_privateinfo授权时返回,第三方应用不可获取
*/
@SerializedName("biz_mail")
private String bizMail;

/**
* 仅在用户同意snsapi_privateinfo授权时返回,第三方应用不可获取
*/
@SerializedName("address")
private String address;

/**
* From json wx cp tp user detail.
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -372,6 +372,7 @@ public interface WxCpTpService {
/**
* <pre>
* 获取访问用户敏感信息
* <a href="https://developer.work.weixin.qq.com/document/path/95833">文档地址</a>
* </pre>
*
* @param userTicket the user ticket
Expand Down

0 comments on commit 736fbd3

Please sign in to comment.