C#微信公众号开发 微信事件交互
程序员文章站
2022-03-14 18:16:08
前言
一切准备工作就绪时就先实现一个关注公众号后向客户端推送一条消息。关注后推送消息需要一个get请求、一个post请求,get请求主要是为了向微信服务器验证,post请...
前言
一切准备工作就绪时就先实现一个关注公众号后向客户端推送一条消息。关注后推送消息需要一个get请求、一个post请求,get请求主要是为了向微信服务器验证,post请求主要就是处理微信消息了。 调接口时传递的appid和appsecret请传递自己公众号对应的参数。
微信事件交互
微信事件交互主要是向微信服务器推送xml数据包
看效果
看代码
[httpget] [actionname("index")] public actionresult get(string signature,string timestamp,string nonce,string echostr) { if (checksignature.check(signature, timestamp, nonce, token)) { return content(echostr); } else { return content("err"); }
[httppost] [actionname("index")] public actionresult get(string signature, string timestamp, string nonce) { streamreader sr = new streamreader(request.inputstream, encoding.utf8); xmldocument doc = new xmldocument(); doc.load(sr); sr.close(); sr.dispose(); wxmessage wxmessage = new wxmessage(); wxmessage.tousername = doc.selectsinglenode("xml").selectsinglenode("tousername").innertext; wxmessage.fromusername = doc.selectsinglenode("xml").selectsinglenode("fromusername").innertext; wxmessage.msgtype = doc.selectsinglenode("xml").selectsinglenode("msgtype").innertext; wxmessage.createtime = int.parse(doc.selectsinglenode("xml").selectsinglenode("createtime").innertext); if (wxmessage.msgtype == "event") { wxmessage.eventname = doc.selectsinglenode("xml").selectsinglenode("event").innertext; if (!string.isnullorempty(wxmessage.eventname) && wxmessage.eventname == "subscribe") { string content = "您好,欢迎访问garfieldzf8测试公众平台"; content = sendtextmessage(wxmessage, content); return content(content); } } return content(""); } private string sendtextmessage(wxmessage wxmessage,string content) { string result = string.format(message, wxmessage.fromusername,wxmessage.tousername,datetime.now.ticks, content); return result; } public string message { get { return @"<xml> <tousername><![cdata[{0}]]></tousername> <fromusername><![cdata[{1}]]></fromusername> <createtime>{2}</createtime> <msgtype><![cdata[text]]></msgtype> <content><![cdata[{3}]]></content> </xml>"; } }
public class wxmessage { public string tousername { get; set; } public string fromusername { get; set; } public long createtime { get; set; } public string content { get; set; } public string msgtype { get; set; } public string eventname { get; set; } public string eventkey { get; set; } }
总结
开发微信接口的过程中不能调试,唯一排除问题的方式就是在关键的地方记log。
微信事件交互主要是分析微信发送的xml数据包,解析xml,并按照消息指定格式拼接xml发送给response。在get方法里用到的checksignature 是盛派微信sdk的一个类,也就是对签名校验。
向客户端发送消息时主要tousername和fromusername。我一开始把两个参数写反了导致客户端收不到消息。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持。
上一篇: C# salt+hash 加密
下一篇: Redis精确去重计数方法(咆哮位图)