ASP.NET微信开发(接口指南)

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

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

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

加密/校验流程:

  • 1. 将token、timestamp、nonce三个参数进行字典序排序
  • 2. 将三个参数字符串拼接成一个字符串进行sha1加密
  • 3. 开发者获得加密后的字符串可与signature对比,标识该请求来源于微信
/// <summary>
 /// 验证签名
 /// </summary>
 /// <param name="signature"></param>
 /// <param name="timestamp"></param>
 /// <param name="nonce"></param>
 /// <returns></returns>
 public static bool CheckSignature(String signature, String timestamp, String nonce)
 {
 String[] arr = new String[] { token, timestamp, nonce };
 // 将token、timestamp、nonce三个参数进行字典序排序
 Array.Sort<String>(arr); 

 StringBuilder content = new StringBuilder();
 for (int i = 0; i < arr.Length; i++)
 {
  content.Append(arr[i]);
 } 

 String tmpStr = SHA1_Encrypt(content.ToString()); 

 // 将sha1加密后的字符串可与signature对比,标识该请求来源于微信
 return tmpStr != null ? tmpStr.Equals(signature) : false;
 } 

 /// <summary>
 /// 使用缺省密钥给字符串加密
 /// </summary>
 /// <param name="Source_String"></param>
 /// <returns></returns>
 public static string SHA1_Encrypt(string Source_String)
 {
 byte[] StrRes = Encoding.Default.GetBytes(Source_String);
 HashAlgorithm iSHA = new SHA1CryptoServiceProvider();
 StrRes = iSHA.ComputeHash(StrRes);
 StringBuilder EnText = new StringBuilder();
 foreach (byte iByte in StrRes)
 {
  EnText.AppendFormat("{0:x2}", iByte);
 }
 return EnText.ToString();
 } 

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

 protected void Page_Load(object sender, EventArgs e)
 { 

 if (Request.HttpMethod.ToUpper() == "GET")
 {
  // 微信加密签名
  string signature = Request.QueryString["signature"];
  // 时间戳
  string timestamp = Request.QueryString["timestamp"];
  // 随机数
  string nonce = Request.QueryString["nonce"];
  // 随机字符串
  string echostr = Request.QueryString["echostr"];
  if (WeixinServer.CheckSignature(signature, timestamp, nonce))
  {
  Response.Write(echostr);
  } 

 }
 else if (Request.HttpMethod.ToUpper() == "POST")
 { 

  StreamReader stream = new StreamReader(Request.InputStream);
  string xml = stream.ReadToEnd(); 

  processRequest(xml);
 } 

 } 

 /// <summary>
 /// 处理微信发来的请求
 /// </summary>
 /// <param name="xml"></param>
 public void processRequest(String xml)
 {
 try
 { 

  // xml请求解析
  Hashtable requestHT = WeixinServer.ParseXml(xml); 

  // 发送方帐号(open_id)
  string fromUserName = (string)requestHT["FromUserName"];
  // 公众帐号
  string toUserName = (string)requestHT["ToUserName"];
  // 消息类型
  string msgType = (string)requestHT["MsgType"]; 

  //文字消息
  if (msgType == ReqMsgType.Text)
  {
  // Response.Write(str); 

  string content = (string)requestHT["Content"];
  if(content=="1")
  {
   // Response.Write(str);
   Response.Write(GetNewsMessage(toUserName, fromUserName));
   return;
  }
  if (content == "2")
  {
   Response.Write(GetUserBlogMessage(toUserName, fromUserName));
   return;
  }
  if (content == "3")
  {
   Response.Write(GetGroupMessage(toUserName, fromUserName));
   return;
  }
  if (content == "4")
  {
   Response.Write(GetWinePartyMessage(toUserName, fromUserName));
   return;
  }
  Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,")); 

  }
  else if (msgType == ReqMsgType.Event)
  {
  // 事件类型
  String eventType = (string)requestHT["Event"];
  // 订阅
  if (eventType==ReqEventType.Subscribe)
  { 

   Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,")); 

  }
  // 取消订阅
  else if (eventType==ReqEventType.Unsubscribe)
  {
   // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息
  }
  // 自定义菜单点击事件
  else if (eventType==ReqEventType.CLICK)
  {
   // TODO 自定义菜单权没有开放,暂不处理该类消息
  }
  }
  else if (msgType == ReqMsgType.Location)
  {
  } 

 }
 catch (Exception e)
 { 

 }
 }<pre name="code" class="csharp"> protected void Page_Load(object sender, EventArgs e)
 { 

 if (Request.HttpMethod.ToUpper() == "GET")
 {
  // 微信加密签名
  string signature = Request.QueryString["signature"];
  // 时间戳
  string timestamp = Request.QueryString["timestamp"];
  // 随机数
  string nonce = Request.QueryString["nonce"];
  // 随机字符串
  string echostr = Request.QueryString["echostr"];
  if (WeixinServer.CheckSignature(signature, timestamp, nonce))
  {
  Response.Write(echostr);
  } 

 }
 else if (Request.HttpMethod.ToUpper() == "POST")
 { 

  StreamReader stream = new StreamReader(Request.InputStream);
  string xml = stream.ReadToEnd(); 

  processRequest(xml);
 } 

 } 

 /// <summary>
 /// 处理微信发来的请求
 /// </summary>
 /// <param name="xml"></param>
 public void processRequest(String xml)
 {
 try
 { 

  // xml请求解析
  Hashtable requestHT = WeixinServer.ParseXml(xml); 

  // 发送方帐号(open_id)
  string fromUserName = (string)requestHT["FromUserName"];
  // 公众帐号
  string toUserName = (string)requestHT["ToUserName"];
  // 消息类型
  string msgType = (string)requestHT["MsgType"]; 

  //文字消息
  if (msgType == ReqMsgType.Text)
  {
  // Response.Write(str); 

  string content = (string)requestHT["Content"];
  if(content=="1")
  {
   // Response.Write(str);
   Response.Write(GetNewsMessage(toUserName, fromUserName));
   return;
  }
  if (content == "2")
  {
   Response.Write(GetUserBlogMessage(toUserName, fromUserName));
   return;
  }
  if (content == "3")
  {
   Response.Write(GetGroupMessage(toUserName, fromUserName));
   return;
  }
  if (content == "4")
  {
   Response.Write(GetWinePartyMessage(toUserName, fromUserName));
   return;
  }
  Response.Write(GetMainMenuMessage(toUserName, fromUserName, "你好,我是vinehoo,")); 

  }
  else if (msgType == ReqMsgType.Event)
  {
  // 事件类型
  String eventType = (string)requestHT["Event"];
  // 订阅
  if (eventType==ReqEventType.Subscribe)
  { 

   Response.Write(GetMainMenuMessage(toUserName, fromUserName, "谢谢您的关注!,")); 

  }
  // 取消订阅
  else if (eventType==ReqEventType.Unsubscribe)
  {
   // TODO 取消订阅后用户再收不到公众号发送的消息,因此不需要回复消息
  }
  // 自定义菜单点击事件
  else if (eventType==ReqEventType.CLICK)
  {
   // TODO 自定义菜单权没有开放,暂不处理该类消息
  }
  }
  else if (msgType == ReqMsgType.Location)
  {
  } 

 }
 catch (Exception e)
 { 

 }
 }</pre><br>
<pre></pre>
<br>
<br> 

本文已被整理到了《ASP.NET微信开发教程汇总》,欢迎大家学习阅读。

以上就是关于ASP.NET微信开发接口指南的相关内容介绍,希望对大家的学习有所帮助。

(0)

相关推荐

  • .NET微信公众号客服接口

    本文实例为大家分享了微信公众号客服接口.NET代码,供大家参考,具体内容如下 Kf_account.cs代码: public partial class Kf_account : Form { private readonly DataTable adt_user = new DataTable(); private readonly string as_INIFile = Application.StartupPath + "\\user.ini"; public Kf_accoun

  • .NET微信公众号查看关注者接口

    本文实例为大家分享了java获取不同路径的方法,供大家参考,具体内容如下 实体类: public class userlist { public string total { get; set; } public string count { get; set; } public userlistopenid data { get; set; } public string next_openid { get; set; } } public class userlistopenid { pub

  • PHP对接微信公众平台消息接口开发流程教程

    一.写好接口程序 在你的服务器上上传好一个接口程序文件,如http://www.yourdomain.com/weixin.php  内容如下: 复制代码 代码如下: <?phpdefine("TOKEN", "weixin");//自己定义的token 就是个通信的私钥$wechatObj = new wechatCallbackapiTest();$wechatObj->valid();//$wechatObj->responseMsg();c

  • 微信JS接口汇总及使用详解

    基本说明 使用说明 1.引入JS文件 在需要调用JS接口的页面引入如下JS文件,(支持https):http://res.wx.qq.com/open/js/jweixin-1.0.0.js 备注:支持使用 AMD/CMD 标准模块加载方法加载 2.注入配置config接口 所有需要使用JSSDK的页面必须先注入配置信息,否则将无法调用(同一个url仅需调用一次,对于变化url的SPA的web app可在每次url变化时进行调用). 复制代码 代码如下: wx.config({  debug:

  • C#.net 微信公众账号接口开发

    微信越来越火,微信公众平台成为开发成新宠,本文用C#.net开发微信公众信号接口. 微信接口地址代码: weixin _wx = new weixin(); string postStr = ""; if (Request.HttpMethod.ToLower() == "post") { Stream s = System.Web.HttpContext.Current.Request.InputStream; byte[] b = new byte[s.Leng

  • asp.net实现微信公众账号接口开发教程

    说起微信公众帐号,大家都不会陌生,使用这个平台能给网站或系统增加一个新亮点,直接进入正题吧,在使用之前一定要仔细阅读官方API文档. 使用.net实现的方法: //微信接口地址 页面代码: weixin _wx = new weixin(); string postStr = ""; if (Request.HttpMethod.ToLower() == "post") { Stream s = System.Web.HttpContext.Current.Requ

  • .net实现微信公众账号接口开发实例代码

    说起微信公众帐号,大家都不会陌生,使用这个平台能给网站或系统增加一个新亮点,直接进入正题吧,在使用之前一定要仔细阅读官方API文档.API文档地址:http://mp.weixin.qq.com/wiki/index.php 使用.net实现的方法://微信接口地址 页面代码: 复制代码 代码如下: weixin _wx = new weixin();  string postStr = "";  if (Request.HttpMethod.ToLower() == "po

  • 微信公众平台开发接口PHP SDK完整版

    代码如下: 更新日志: 2013-01-01 版本1.02014-03-15 增加图片.视频.语音的内容回复2014-04-09 增加菜单链接事件2014-04-10 修改文本回复的判定方法 复制代码 代码如下: <?php/*    方倍工作室    CopyRight 2014 All Rights Reserved*/ define("TOKEN", "weixin"); $wechatObj = new wechatCallbackapiTest();

  • 微信API接口大全

    微信入口绑定,微信事件处理,微信API全部操作包含在这些文件中. 微信支付.微信红包.微信卡券.微信小店. 1. [代码]index.php <?php include_once 'lib.inc.php'; $wcObj = new WeChat("YOUKUIYUAN"); $wcObj->wcValid(); 2. [代码]微信入口类 <?php /** * Description of wechat * * @author Administrator */ c

  • 微信公众号支付(二)实现统一下单接口

    上一篇已经获取到了用户的OpenId 这篇主要是调用微信公众支付的统一下单API API地址:https://pay.weixin.qq.com/wiki/doc/api/jsapi.php?chapter=9_1 看文档,主要流程就是把20个左右的参数封装为XML格式发送到微信给的接口地址,然后就可以获取到返回的内容了,如果成功里面就有支付所需要的预支付ID 请求参数就不解释了. 其中,随机字符串:我用的是UUID去中划线 public static String create_nonce_s

随机推荐