中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

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

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

微信開發中如何接入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

肥乡县| 湾仔区| 宜川县| 沙河市| 蓝山县| 保康县| 汾西县| 新乡市| 沙河市| 嘉荫县| 甘南县| 即墨市| 梁河县| 吉木萨尔县| 嘉善县| 南丰县| 嫩江县| 城市| 保山市| 喜德县| 独山县| 新丰县| 丹江口市| 洪泽县| 革吉县| 长沙县| 岗巴县| 武城县| 北宁市| 阿尔山市| 亚东县| 确山县| 灵山县| 社旗县| 新宁县| 龙江县| 阿克| 全州县| 绥芬河市| 芒康县| 大同县|