namespace learun.wechat { /// /// 版 本 EasyCode EC管理后台 /// Copyright (c) 2019-present EC管理有限公司 /// 创建人:tobin /// 日 期:2019.11.06 /// 描 述:获取用户信息 /// public class UserGetuserinfo : OperationRequestBase { private string url = "https://qyapi.weixin.qq.com/cgi-bin/user/getuserinfo?access_token=ACCESS_TOKEN&code={0}&agentid={1}"; /// /// /// /// protected override string Url() { return string.Format(url, code, agentid); } /// /// 通过员工授权获取到的code,每次员工授权带上的code将不一样,code只能使用一次,5分钟未被使用自动过期 /// /// [IsNotNull] public string code { get; set; } /// /// 跳转链接时所在的企业应用ID /// /// [IsNotNull] public string agentid { get; set; } } }