using Senparc.CO2NET.Extensions; using Senparc.CO2NET.HttpUtility; using Senparc.Weixin; using Senparc.Weixin.CommonAPIs; using Senparc.Weixin.Entities; using Senparc.Weixin.Entities.TemplateMessage; using Senparc.Weixin.Exceptions; using Senparc.Weixin.MP; using Senparc.Weixin.MP.Containers; using Senparc.Weixin.MP.Entities; using System; using System.Threading.Tasks; using Znyc.Recruitment.Admin.Commons.Cache; namespace Wx { /// /// 通用接口 /// 通用接口用于和微信服务器通讯,一般不涉及自有网站服务器的通讯 /// public static class CommonHelper { #region 同步方法 /// /// 获取凭证接口 /// /// 获取access_token填写client_credential /// 第三方用户唯一凭证 /// 第三方用户唯一凭证密钥,既appsecret /// public static AccessTokenResult GetToken(string appid, string secret, string grant_type = "client_credential") { //注意:此方法不能再使用ApiHandlerWapper.TryCommonApi(),否则会循环 string url = string.Format(Config.ApiMpHost + "/cgi-bin/token?grant_type={0}&appid={1}&secret={2}", grant_type.AsUrlData(), appid.AsUrlData(), secret.AsUrlData()); AccessTokenResult result = Get.GetJson(CommonDI.CommonSP, url); //此处为最原始接口,不再使用重试获取的封装 if (Config.ThrownWhenJsonResultFaild && result.errcode != ReturnCode.请求成功) { throw new ErrorJsonResultException( string.Format("微信请求发生错误(CommonApi.GetToken)!错误代码:{0},说明:{1}", (int)result.errcode, result.errmsg), null, result); } return result; } /// /// 用户信息接口 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// /// public static WeixinUserInfoResult GetUserInfo(string accessTokenOrAppId, string openId) { return ApiHandlerWapper.TryCommonApi(accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/user/info?access_token={0}&openid={1}", accessToken.AsUrlData(), openId.AsUrlData()); WeixinUserInfoResult result = CommonJsonSend.Send(null, url, null, CommonJsonSendType.GET); return result; }, accessTokenOrAppId); } /// /// 获取调用微信JS接口的临时票据 /// /// /// /// 默认为jsapi,当作为卡券接口使用时,应当为wx_card /// public static JsApiTicketResult GetTicket(string appId, string secret, string type = "jsapi") { string accessToken = AccessTokenContainer.TryGetAccessToken(appId, secret); return GetTicketByAccessToken(accessToken, type); } /// /// 获取调用微信JS接口的临时票据 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// 默认为jsapi,当作为卡券接口使用时,应当为wx_card /// public static JsApiTicketResult GetTicketByAccessToken(string accessTokenOrAppId, string type = "jsapi") { return ApiHandlerWapper.TryCommonApi(accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/ticket/getticket?access_token={0}&type={1}", accessToken.AsUrlData(), type.AsUrlData()); JsApiTicketResult result = CommonJsonSend.Send(null, url, null, CommonJsonSendType.GET); return result; }, accessTokenOrAppId); } /// /// 获取微信服务器的ip段 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// public static GetCallBackIpResult GetCallBackIp(string accessTokenOrAppId) { return ApiHandlerWapper.TryCommonApi(accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/getcallbackip?access_token={0}", accessToken.AsUrlData()); return CommonJsonSend.Send(null, url, null, CommonJsonSendType.GET); }, accessTokenOrAppId); } /// /// 公众号调用或第三方平台帮公众号调用对公众号的所有api调用(包括第三方帮其调用)次数进行清零 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// /// /// public static WxJsonResult Clear_quota(string accessTokenOrAppId, string appId, int timeOut = Config.TIME_OUT) { return ApiHandlerWapper.TryCommonApi(accessToken => { string urlFormat = string.Format(Config.ApiMpHost + "/cgi-bin/clear_quota?access_token={0}", accessToken.AsUrlData()); var data = new { appid = appId }; return CommonJsonSend.Send(null, urlFormat, data, timeOut: timeOut); }, accessTokenOrAppId); } #endregion 同步方法 #region 异步方法 /// /// 【异步方法】获取凭证接口 /// /// 获取access_token填写client_credential /// 第三方用户唯一凭证 /// 第三方用户唯一凭证密钥,既appsecret /// public static async Task GetTokenAsync(string appid, string secret, string grant_type = "client_credential") { CacheHelper cacheHelper = new CacheHelper(); AccessTokenResult result; result = cacheHelper.Get(appid); if (result == null) { string url = string.Format(Config.ApiMpHost + "/cgi-bin/token?grant_type={0}&appid={1}&secret={2}", grant_type.AsUrlData(), appid.AsUrlData(), secret.AsUrlData()); result = await Get.GetJsonAsync(CommonDI.CommonSP, url); //此处为最原始接口,不再使用重试获取的封装 if (Config.ThrownWhenJsonResultFaild && result.errcode != ReturnCode.请求成功) { throw new ErrorJsonResultException( string.Format("微信请求发生错误(CommonApi.GetToken)!错误代码:{0},说明:{1}", (int)result.errcode, result.errmsg), null, result); } TimeSpan expiresSliding = DateTime.Now.AddSeconds(7200) - DateTime.Now; cacheHelper.Add(appid, result, expiresSliding); } return result; } /// /// 【异步方法】用户信息接口 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// /// public static async Task GetUserInfoAsync(string accessTokenOrAppId, string openId) { return await ApiHandlerWapper.TryCommonApiAsync(async accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/user/info?access_token={0}&openid={1}", accessToken.AsUrlData(), openId.AsUrlData()); Task result = CommonJsonSend.SendAsync(null, url, null, CommonJsonSendType.GET); return await result.ConfigureAwait(false); }, accessTokenOrAppId).ConfigureAwait(false); } /// /// 【异步方法】获取调用微信JS接口的临时票据 /// /// /// /// 默认为jsapi,当作为卡券接口使用时,应当为wx_card /// public static async Task GetTicketAsync(string appId, string secret, string type = "jsapi") { string accessToken = await AccessTokenContainer.TryGetAccessTokenAsync(appId, secret).ConfigureAwait(false); return GetTicketByAccessToken(accessToken, type); } /// /// 【异步方法】获取调用微信JS接口的临时票据 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// 默认为jsapi,当作为卡券接口使用时,应当为wx_card /// public static async Task GetTicketByAccessTokenAsync(string accessTokenOrAppId, string type = "jsapi") { return await ApiHandlerWapper.TryCommonApiAsync(async accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/ticket/getticket?access_token={0}&type={1}", accessToken.AsUrlData(), type.AsUrlData()); Task result = CommonJsonSend.SendAsync(null, url, null, CommonJsonSendType.GET); return await result.ConfigureAwait(false); }, accessTokenOrAppId).ConfigureAwait(false); } /// /// 【异步方法】获取微信服务器的ip段 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// public static async Task GetCallBackIpAsync(string accessTokenOrAppId) { return await ApiHandlerWapper.TryCommonApiAsync(async accessToken => { string url = string.Format(Config.ApiMpHost + "/cgi-bin/getcallbackip?access_token={0}", accessToken.AsUrlData()); return await CommonJsonSend.SendAsync(null, url, null, CommonJsonSendType.GET) .ConfigureAwait(false); }, accessTokenOrAppId).ConfigureAwait(false); } /// /// 【异步方法】公众号调用或第三方平台帮公众号调用对公众号的所有api调用(包括第三方帮其调用)次数进行清零 /// /// AccessToken或AppId(推荐使用AppId,需要先注册) /// /// /// public static async Task Clear_quotaAsync(string accessTokenOrAppId, string appId, int timeOut = Config.TIME_OUT) { return await ApiHandlerWapper.TryCommonApiAsync(async accessToken => { string urlFormat = string.Format(Config.ApiMpHost + "/cgi-bin/clear_quota?access_token={0}", accessToken.AsUrlData()); var data = new { appid = appId }; return await CommonJsonSend.SendAsync(null, urlFormat, data, timeOut: timeOut) .ConfigureAwait(false); }, accessTokenOrAppId).ConfigureAwait(false); } /// /// 求职/招聘审核通知 /// /// public static async Task SendProductAsync(TemplateMessageData tmessageData, string toUser, string url) { await MessageHelper.SendSubscribeAsync(tmessageData, "dm1yuO5nVqiRQyMWcS4VZOjOZY5rDCjhiqiUcueyMJc", toUser, url); } /// /// 实名认证失败发送通知 /// /// public static async Task SendAuditFailAsync(string toUser) { string thing1 = "您的实名认证信息认证失败"; TemplateMessageData templateMessageData = new TemplateMessageData { ["thing1"] = new TemplateMessageDataValue(thing1), ["time2"] = new TemplateMessageDataValue(SystemTime.Now.ToString("yyyy年MM月dd日 HH:mm")), ["phrase3"] = new TemplateMessageDataValue("审核失败"), ["thing4"] = new TemplateMessageDataValue("实名认证信息有误") }; await MessageHelper.SendSubscribeAsync(templateMessageData, "dm1yuO5nVqiRQyMWcS4VZOjOZY5rDCjhiqiUcueyMJc", toUser, "pages/verification/verification"); } /// /// 实名认证审核成功 /// /// /// public static async Task SendAuditSuccessAsync(string toUser) { string thing1 = "您的实名认证信息认证成功"; TemplateMessageData templateMessageData = new TemplateMessageData { ["thing1"] = new(thing1), ["time2"] = new(SystemTime.Now.ToString("yyyy年MM月dd日 HH:mm")), ["phrase3"] = new("审核通过"), ["thing4"] = new("满足通过条件") }; await MessageHelper.SendSubscribeAsync(templateMessageData, "dm1yuO5nVqiRQyMWcS4VZOjOZY5rDCjhiqiUcueyMJc", toUser, "pages/verification/verification"); } #endregion 异步方法 } }