码迷,mamicode.com
首页 > 微信 > 详细

企业微信验证数据签名请求

时间:2014-11-07 18:51:58      阅读:717      评论:0      收藏:0      [点我收藏+]

标签:style   blog   http   io   color   os   sp   for   数据   

 1 string signature = Request["signature"];
 2 string timestamp = Request["timestamp"];
 3 string nonce     = Request["nonce"];
 4 
 5 List<string> list = new List<string>();
 6 
 7 list.Add(appToken);
 8 list.Add(timestamp);
 9 list.Add(nonce);
10 
11 list.Sort();
12 
13 StringBuilder sb = new StringBuilder();
14 foreach(string s in list)
15    sb.Append(s);
16 
17 if(signature.ToUpper() != System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(sb.ToString(),"SHA1"))
18    HttpContext.Current.Response.Write("非法的验证");
19 else
20    HttpContext.Current.Response.Write(Request["echostr"]);

 

企业微信验证数据签名请求

标签:style   blog   http   io   color   os   sp   for   数据   

原文地址:http://www.cnblogs.com/briny/p/4081900.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!