前言
一切准备工作就绪时就先实现一个关注公众号后向客户端推送一条消息。关注后推送消息需要一个get请求、一个post请求,get请求主要是为了向微信服务器验证,post请求主要就是处理微信消息了。 调接口时传递的appid和appsecret请传递自己公众号对应的参数。
微信事件交互
微信事件交互主要是向微信服务器推送xml数据包
看效果
看代码
1
2
3
4
5
6
7
8
9
10
11
12
|
[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" ); } |
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
|
[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>" ; } } |
1
2
3
4
5
6
7
8
9
10
11
|
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。我一开始把两个参数写反了导致客户端收不到消息。
以上就是本文的全部内容,希望对大家的学习有所帮助,也希望大家多多支持服务器之家。
原文链接:http://www.cnblogs.com/sword-successful/p/6262235.html