mirror of
https://gitee.com/binary/weixin-java-tools.git
synced 2025-08-24 07:23:01 +08:00
🎨 #3055 【企业微信】获取访问用户敏感信息接口返回值增加若干字段
This commit is contained in:
parent
40926584f3
commit
736fbd3ed8
@ -50,6 +50,30 @@ public class WxCpTpUserDetail extends WxCpBaseResp {
|
|||||||
@SerializedName("qr_code")
|
@SerializedName("qr_code")
|
||||||
private String qrCode;
|
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.
|
* From json wx cp tp user detail.
|
||||||
*
|
*
|
||||||
|
@ -372,6 +372,7 @@ public interface WxCpTpService {
|
|||||||
/**
|
/**
|
||||||
* <pre>
|
* <pre>
|
||||||
* 获取访问用户敏感信息
|
* 获取访问用户敏感信息
|
||||||
|
* <a href="https://developer.work.weixin.qq.com/document/path/95833">文档地址</a>
|
||||||
* </pre>
|
* </pre>
|
||||||
*
|
*
|
||||||
* @param userTicket the user ticket
|
* @param userTicket the user ticket
|
||||||
|
Loading…
Reference in New Issue
Block a user