亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

微信開發中如何接入asp.net

發布時間:2021-09-22 09:45:06 來源:億速云 閱讀:108 作者:小新 欄目:開發技術

這篇文章主要介紹微信開發中如何接入asp.net,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!

        首先創建一個Default.aspx。在Page_Load里進行檢驗:(MyLog是日志類,可以忽略)   關于checkSignature()就和所查到的差不多了。這里貼一下。

 MyLog.DebugInfo("request default.aspx");
 String echoStr = Request.QueryString["echostr"];
 MyLog.DebugInfo("echoStr:"+echoStr);
 if (this.checkSignature())
 {
 if(!string.IsNullOrEmpty(echoStr)){
 MyLog.DebugInfo("echostr:" + echoStr);
 Response.Write(echoStr);
 Response.End();
 }
 
 }

最最主要的是那句Response.End(),不加這一句怎么樣都接不進去(希望有大神告知)。 關于checkSignature()就和所查到的差不多了。這里貼一下

private bool checkSignature()
{
 
 string signature = Request["signature"];
 string timestamp = Request["timestamp"];
 string nonce = Request["nonce"];
 MyLog.DebugInfo(String.Format("signature:{0},timestamp:{1},nonce:{2}", signature, timestamp, nonce));
 string token = TOKEN;
 string[] tmpArr = new string[] { token, timestamp, nonce };
 Array.Sort(tmpArr);
 string tmpStr = string.Join("", tmpArr);
 //sha1加密
 System.Security.Cryptography.SHA1 sha1 = new System.Security.Cryptography.SHA1CryptoServiceProvider();
 byte[] secArr = sha1.ComputeHash(System.Text.Encoding.Default.GetBytes(tmpStr));
 tmpStr = BitConverter.ToString(secArr).Replace("-", "").ToLower();
 MyLog.DebugInfo(String.Format("after parse:{0}", tmpStr));
 if (tmpStr == signature)
 {
 MyLog.DebugInfo("true");
 return true;
 }
 else
 {
 return false;
 }

以上是“微信開發中如何接入asp.net”這篇文章的所有內容,感謝各位的閱讀!希望分享的內容對大家有幫助,更多相關知識,歡迎關注億速云行業資訊頻道!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

如东县| 紫云| 湾仔区| 济阳县| 铜山县| 资中县| 平舆县| 肇州县| 行唐县| 辽宁省| 元阳县| 庆元县| 海城市| 肇庆市| 蚌埠市| 安康市| 中阳县| 上杭县| 云阳县| 若尔盖县| 哈尔滨市| 汕头市| 大新县| 绵阳市| 临高县| 德江县| 乳山市| 固镇县| 葵青区| 江油市| 黑龙江省| 宜兴市| 清水河县| 竹北市| 旺苍县| 胶州市| 华安县| 丽江市| 铁力市| 前郭尔| 余干县|