asp.net微信公众平台开发

http://mp.weixin.qq.com/wiki/index.php?title=%E6%B6%88%E6%81%AF%E6%8E%A5%E5%8F%A3%E6%8C%87%E5%8D%97

微信公众平台接口指南

微信公众平台的开发比较简单,首先是网址接入

公众平台用户提交信息后,微信服务器将发送GET请求到填写的URL上,并且带上四个参数:

参数 描述
signature 微信加密签名
timestamp 时间戳
nonce 随机数
echostr 随机字符串

开发者通过检验signature对请求进行校验(下面有校验方式)。若确认此次GET请求来自微信服务器,请原样返回echostr参数内容,则接入生效,否则接入失败。

signature结合了开发者填写的token参数和请求中的timestamp参数、nonce参数。

加密/校验流程:
1. 将token、timestamp、nonce三个参数进行字典序排序
2. 将三个参数字符串拼接成一个字符串进行sha1加密
3. 开发者获得加密后的字符串可与signature对比,标识该请求来源于微信
  1. /// <summary>
  2. /// 验证签名
  3. /// </summary>
  4. /// <param name="signature"></param>
  5. /// <param name="timestamp"></param>
  6. /// <param name="nonce"></param>
  7. /// <returns></returns>
  8. public static bool CheckSignature(String signature, String timestamp, String nonce)
  9. {
  10. String[] arr = new String[] { token, timestamp, nonce };
  11. // 将token、timestamp、nonce三个参数进行字典序排序
  12. Array.Sort<String>(arr);
  13. StringBuilder content = new StringBuilder();
  14. for (int i = 0; i < arr.Length; i++)
  15. {
  16. content.Append(arr[i]);
  17. }
  18. String tmpStr = SHA1_Encrypt(content.ToString());
  19. // 将sha1加密后的字符串可与signature对比,标识该请求来源于微信
  20. return tmpStr != null ? tmpStr.Equals(signature) : false;
  21. }
  22. /// <summary>
  23. /// 使用缺省密钥给字符串加密
  24. /// </summary>
  25. /// <param name="Source_String"></param>
  26. /// <returns></returns>
  27. public static string SHA1_Encrypt(string Source_String)
  28. {
  29. byte[] StrRes = Encoding.Default.GetBytes(Source_String);
  30. HashAlgorithm iSHA = new SHA1CryptoServiceProvider();
  31. StrRes = iSHA.ComputeHash(StrRes);
  32. StringBuilder EnText = new StringBuilder();
  33. foreach (byte iByte in StrRes)
  34. {
  35. EnText.AppendFormat("{0:x2}", iByte);
  36. }
  37. return EnText.ToString();
  38. }

接入后是消息推送当普通微信用户向公众账号发消息时,微信服务器将POST该消息到填写的URL上。

  1. protected void Page_Load(object sender, EventArgs e)
  2. {
  3. if (Request.HttpMethod.ToUpper() == "GET")
  4. {
  5. // 微信加密签名
  6. string signature = Request.QueryString["signature"];
  7. // 时间戳
  8. string timestamp = Request.QueryString["timestamp"];
  9. // 随机数
  10. string nonce = Request.QueryString["nonce"];
  11. // 随机字符串
  12. string echostr = Request.QueryString["echostr"];
  13. if (WeixinServer.CheckSignature(signature, timestamp, nonce))
  14. {
  15. Response.Write(echostr);
  16. }
  17. }
  18. else if (Request.HttpMethod.ToUpper() == "POST")
  19. {
  20. StreamReader stream = new StreamReader(Request.InputStream);
  21. string xml = stream.ReadToEnd();
  22. processRequest(xml);
  23. }
  24. }
  25. /// <summary>
  26. /// 处理微信发来的请求
  27. /// </summary>
  28. /// <param name="xml"></param>
  29. public void processRequest(String xml)
  30. {
  31. try
  32. {
  33. // xml请求解析
  34. Hashtable requestHT = WeixinServer.ParseXml(xml);
  35. // 发送方帐号(open_id)
  36. string fromUserName = (string)requestHT["FromUserName"];
  37. // 公众帐号
  38. string toUserName = (string)requestHT["ToUserName"];
  39. // 消息类型
  40. string msgType = (string)requestHT["MsgType"];
  41. //文字消息
  42. if (msgType == ReqMsgType.Text)
  43. {
  44. // Response.Write(str);
  45. string content = (string)requestHT["Content"];
  46. if(content=="1")
  47. {
  48. // Response.Write(str);
  49. Response.Write(GetNewsMessage(toUserName, fromUserName));
  50. return;
  51. }
  52. if (content == "2")
  53. {
  54. Response.Write(GetUserBlogMessage(toUserName, fromUserName));
  55. return;
  56. }
  57. if (content == "3")
  58. {
  59. Response.Write(GetGroupMessage(toUserName, fromUserName));
  60. return;
  61. }
  62. if (content == "4")
  63. {
  64. Response.Write(GetWinePartyMessage(toUserName, fromUserName));
  65. return;
  66. }
  67. Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,"));
  68. }
  69. else if (msgType == ReqMsgType.Event)
  70. {
  71. // 事件类型
  72. String eventType = (string)requestHT["Event"];
  73. // 订阅
  74. if (eventType==ReqEventType.Subscribe)
  75. {
  76. Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,"));
  77. }
  78. // 取消订阅
  79. else if (eventType==ReqEventType.Unsubscribe)
  80. {
  81. // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息
  82. }
  83. // 自定义菜单点击事件
  84. else if (eventType==ReqEventType.CLICK)
  85. {
  86. // TODO 自定义菜单权没有开放,暂不处理该类消息
  87. }
  88. }
  89. else if (msgType == ReqMsgType.Location)
  90. {
  91. }
  92. }
  93. catch (Exception e)
  94. {
  95. }
  96. }<pre name="code" class="csharp">    protected void Page_Load(object sender, EventArgs e)
  97. {
  98. if (Request.HttpMethod.ToUpper() == "GET")
  99. {
  100. // 微信加密签名
  101. string signature = Request.QueryString["signature"];
  102. // 时间戳
  103. string timestamp = Request.QueryString["timestamp"];
  104. // 随机数
  105. string nonce = Request.QueryString["nonce"];
  106. // 随机字符串
  107. string echostr = Request.QueryString["echostr"];
  108. if (WeixinServer.CheckSignature(signature, timestamp, nonce))
  109. {
  110. Response.Write(echostr);
  111. }
  112. }
  113. else if (Request.HttpMethod.ToUpper() == "POST")
  114. {
  115. StreamReader stream = new StreamReader(Request.InputStream);
  116. string xml = stream.ReadToEnd();
  117. processRequest(xml);
  118. }
  119. }
  120. /// <summary>
  121. /// 处理微信发来的请求
  122. /// </summary>
  123. /// <param name="xml"></param>
  124. public void processRequest(String xml)
  125. {
  126. try
  127. {
  128. // xml请求解析
  129. Hashtable requestHT = WeixinServer.ParseXml(xml);
  130. // 发送方帐号(open_id)
  131. string fromUserName = (string)requestHT["FromUserName"];
  132. // 公众帐号
  133. string toUserName = (string)requestHT["ToUserName"];
  134. // 消息类型
  135. string msgType = (string)requestHT["MsgType"];
  136. //文字消息
  137. if (msgType == ReqMsgType.Text)
  138. {
  139. // Response.Write(str);
  140. string content = (string)requestHT["Content"];
  141. if(content=="1")
  142. {
  143. // Response.Write(str);
  144. Response.Write(GetNewsMessage(toUserName, fromUserName));
  145. return;
  146. }
  147. if (content == "2")
  148. {
  149. Response.Write(GetUserBlogMessage(toUserName, fromUserName));
  150. return;
  151. }
  152. if (content == "3")
  153. {
  154. Response.Write(GetGroupMessage(toUserName, fromUserName));
  155. return;
  156. }
  157. if (content == "4")
  158. {
  159. Response.Write(GetWinePartyMessage(toUserName, fromUserName));
  160. return;
  161. }
  162. Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,"));
  163. }
  164. else if (msgType == ReqMsgType.Event)
  165. {
  166. // 事件类型
  167. String eventType = (string)requestHT["Event"];
  168. // 订阅
  169. if (eventType==ReqEventType.Subscribe)
  170. {
  171. Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,"));
  172. }
  173. // 取消订阅
  174. else if (eventType==ReqEventType.Unsubscribe)
  175. {
  176. // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息
  177. }
  178. // 自定义菜单点击事件
  179. else if (eventType==ReqEventType.CLICK)
  180. {
  181. // TODO 自定义菜单权没有开放,暂不处理该类消息
  182. }
  183. }
  184. else if (msgType == ReqMsgType.Location)
  185. {
  186. }
  187. }
  188. catch (Exception e)
  189. {
  190. }
  191. }</pre><br>
  192. <pre></pre>
  193. <br>
  194. <br>
上一篇:Java微信公众平台接口封装源码分享


下一篇:[PHP] try catch在日常中的使用