C# 之小程序 webapi 認證 微信小程序CheckSignature 消息推送

微信小程序想實現 模板消息推送的話php

1.登陸到微信公衆平臺  - 小程序  - 開發 - 開發設置 。   找到消息推送小程序

 

 2.驗證消息的確來自微信服務器微信小程序

    微信只提供了php檢驗的代碼段,還缺乏返回參數的方法服務器

        // GET: Common
        /// <summary>
        ///  微信小程序模板校驗簽名
        /// </summary>
        /// <returns></returns>
        [System.Web.Http.HttpGet]
        public void  CheckSignature(string signature, string timestamp, string nonce, string echostr)
        {
            var token = ConfigurationManager.AppSettings["Token"];
            string[] ArrTmp = { token, timestamp, nonce };

            Array.Sort(ArrTmp);
            string tmpStr = string.Join("", ArrTmp);

            tmpStr = FormsAuthentication.HashPasswordForStoringInConfigFile(tmpStr, "SHA1");
            tmpStr = tmpStr.ToLower();

            if (tmpStr == signature)
            {
                HttpContext.Current.Response.Write(echostr);
                HttpContext.Current.Response.End();
            }
            HttpContext.Current.Response.Write("校驗失敗");
            HttpContext.Current.Response.End();
        }

 

 

3.填寫服務器配置微信

而後就能夠填寫服務器配置,提交驗證簽名了!微信公衆平臺

相關文章
相關標籤/搜索