我們要進行微信公眾平台的開發,第一步當然是要有公眾號了。什麼?不知道什麼是微信公眾號,看來你還要先回爐煉煉了,呵呵。通俗的說,我們微信平台就好像是個大社會,裡面有個體人,也有各種組織機構。
卻想要微信開發,而必須先有伺服器,但自己卻沒有。這時候可以用花生殼,將內網映射到公網上,這樣就可以在公網上訪問自己的網站了。
接著要寫一個存取程式碼,而微信上只有php是範例。這裡附上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; } }
這裡主要是因為那個Response.End()的問題,導致我搞了許久,特此記錄一下,希望幫助能幫助到的人。
還有一點可能是因為微信伺服器的原因Token驗證失敗,多點2次即可,別像我這樣只點一次啊! ! !
以上是微信開發asp.net接取方法介紹的詳細內容。更多資訊請關注PHP中文網其他相關文章!