濮阳杆衣贸易有限公司

主頁 > 知識庫 > asp.net開發(fā)微信公眾平臺之驗證消息的真實性

asp.net開發(fā)微信公眾平臺之驗證消息的真實性

熱門標簽:河北網(wǎng)絡回撥外呼系統(tǒng) 400免費電話怎么辦理 威海電銷 寧夏機器人電銷 400電話辦理最優(yōu)質(zhì) 關(guān)于宗地圖標注技術(shù)規(guī)范 t3出行地圖標注怎么做 河南語音外呼系統(tǒng)公司 外呼電銷機器人軟件

驗證消息的真實性

在MVC Controller所在項目中添加過濾器,在過濾器中重寫

public override void OnActionExecuting(ActionExecutingContext filterContext)方法

新建數(shù)據(jù)模型

注:服務器接收消息時,不再是signature而是msg_signature

微信服務器推送消息到服務器的HTTP請求報文示例

POST /cgi-bin/wxpush? msg_signature=477715d11cdb4164915debcba66cb864d751f3e6timestamp=1409659813nonce=1372623149 HTTP/1.1

Host: qy.weixin.qq.com

方法重寫,實現(xiàn)對消息的驗證

調(diào)用微信接入時驗證的方法,不過參數(shù)需要小改動一下,采用新建的數(shù)據(jù)模型

在Action方法或在Controller上添加過濾器屬性

代碼示例

Model

/// summary>
  /// 微信推送消息模型
  /// /summary>
  public class WeChatMsgRequestModel
  {
    public string timestamp { get; set; }
    public string nonce { get; set; }

    public string msg_signature { get; set; }
  }

Filter

public class WeChatRequestValidAttribute : ActionFilterAttribute
  {
    private const string Token = "StupidMe";

    public override void OnActionExecuting(ActionExecutingContext filterContext)
    {
      //參數(shù)適配
      Model.FormatModel.WeChatMsgRequestModel model = new Model.FormatModel.WeChatMsgRequestModel() { nonce= filterContext.HttpContext.Request.QueryString["nonce"],msg_signature= filterContext.HttpContext.Request.QueryString["msg_signature"],timestamp= filterContext.HttpContext.Request.QueryString["timestamp"] };
      //驗證
      if (CheckSignature(model))
      {
        base.OnActionExecuting(filterContext);
      }      
    }

    private bool CheckSignature(Model.FormatModel.WeChatMsgRequestModel model)
    {
      string signature, timestamp, nonce, tempStr;
      //獲取請求來的參數(shù)
      signature = model.msg_signature;
      timestamp = model.timest
      nonce = model.nonce;
      //創(chuàng)建數(shù)組,將 Token, timestamp, nonce 三個參數(shù)加入數(shù)組
      string[] array = { Token, timestamp, nonce };
      //進行排序
      Array.Sort(array);
      //拼接為一個字符串
      tempStr = String.Join("", array);
      //對字符串進行 SHA1加密
      tempStr = FormsAuthentication.HashPasswordForStoringInConfigFile(tempStr, "SHA1").ToLower();
      //判斷signature 是否正確
      if (tempStr.Equals(signature))
      {
        return true;
      }
      else
      {
        return false;
      }
    }
  }

Controller Code

/// summary>
    /// 日志助手
    /// /summary>
    private static Common.LogHelper logger = new Common.LogHelper(typeof(HomeController));

    [Filters.WeChatRequestValid]
    public void Valid(Model.FormatModel.WeChatMsgRequestModel model)
    {
      if (ModelState.IsValid)
      {
        try
        {
          //判斷是否是POST請求
          if (HttpContext.Request.HttpMethod.ToUpper() == "POST")
          {
            //從請求的數(shù)據(jù)流中獲取請求信息
            using (Stream stream = HttpContext.Request.InputStream)
            {
              byte[] postBytes = new byte[stream.Length];
              stream.Read(postBytes, 0, (int)stream.Length);
              string postString = System.Text.Encoding.UTF8.GetString(postBytes);
              Handle(postString,model);
            }
          }
        }
        catch (Exception ex)
        {
          logger.Error("發(fā)生異常,異常信息:" + ex.Message + ex.StackTrace);
        }
      }
    }      

以上所述就是本文的全部內(nèi)容 了,希望大家能夠喜歡。

您可能感興趣的文章:
  • ASP.NET微信開發(fā)(接口指南)
  • asp.net微信開發(fā)(永久素材管理)
  • asp.net微信開發(fā)(高級群發(fā)圖文)
  • asp.net微信開發(fā)(高級群發(fā)文本)
  • asp.net微信開發(fā)(用戶分組管理)
  • asp.net微信開發(fā)(已關(guān)注用戶管理)
  • asp.net微信開發(fā)(自定義會話管理)
  • asp.net微信開發(fā)(開發(fā)者接入)
  • asp.net開發(fā)微信公眾平臺之獲取用戶消息并處理
  • ASP.NET MVC5+EF6+EasyUI后臺管理系統(tǒng) 微信公眾平臺開發(fā)之資源環(huán)境準備

標簽:咸寧 吉林 淮北 池州 廣元 樂山 固原 賀州

巨人網(wǎng)絡通訊聲明:本文標題《asp.net開發(fā)微信公眾平臺之驗證消息的真實性》,本文關(guān)鍵詞  asp.net,開發(fā),微信,公眾,平臺,;如發(fā)現(xiàn)本文內(nèi)容存在版權(quán)問題,煩請?zhí)峁┫嚓P(guān)信息告之我們,我們將及時溝通與處理。本站內(nèi)容系統(tǒng)采集于網(wǎng)絡,涉及言論、版權(quán)與本站無關(guān)。
  • 相關(guān)文章
  • 下面列出與本文章《asp.net開發(fā)微信公眾平臺之驗證消息的真實性》相關(guān)的同類信息!
  • 本頁收集關(guān)于asp.net開發(fā)微信公眾平臺之驗證消息的真實性的相關(guān)信息資訊供網(wǎng)民參考!
  • 推薦文章
    响水县| 北票市| 本溪市| 安龙县| 乐山市| 乌鲁木齐县| 林口县| 墨脱县| 德格县| 凌云县| 中方县| 淳化县| 普格县| 黑河市| 龙游县| 南乐县| 合作市| 井陉县| 色达县| 泰来县| 温州市| 甘谷县| 和顺县| 东港市| 鸡东县| 哈尔滨市| 阿拉善右旗| 江西省| 襄垣县| 宜宾市| 通河县| 元朗区| 永福县| 新沂市| 棋牌| 湖北省| 嫩江县| 志丹县| 富阳市| 德昌县| 页游|