使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互-創(chuàng)新互聯(lián)

小編給大家分享一下使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互,希望大家閱讀完這篇文章之后都有所收獲,下面讓我們一起去探討吧!

目前創(chuàng)新互聯(lián)已為上千家的企業(yè)提供了網(wǎng)站建設(shè)、域名、虛擬空間、綿陽(yáng)服務(wù)器托管、企業(yè)網(wǎng)站設(shè)計(jì)、濮陽(yáng)網(wǎng)站維護(hù)等服務(wù),公司將堅(jiān)持客戶導(dǎo)向、應(yīng)用為本的策略,正道將秉承"和諧、參與、激情"的文化,與客戶和合作伙伴齊心協(xié)力一起成長(zhǎng),共同發(fā)展。

前言

一切準(zhǔn)備工作就緒時(shí)就先實(shí)現(xiàn)一個(gè)關(guān)注公眾號(hào)后向客戶端推送一條消息。關(guān)注后推送消息需要一個(gè)get請(qǐng)求、一個(gè)post請(qǐng)求,get請(qǐng)求主要是為了向微信服務(wù)器驗(yàn)證,post請(qǐng)求主要就是處理微信消息了。 調(diào)接口時(shí)傳遞的appid和appsecret請(qǐng)傳遞自己公眾號(hào)對(duì)應(yīng)的參數(shù)。

微信事件交互

微信事件交互主要是向微信服務(wù)器推送XML數(shù)據(jù)包

使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互

看效果

使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互

看代碼

[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測(cè)試公眾平臺(tái)";              
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; }   
}

總結(jié)

開發(fā)微信接口的過(guò)程中不能調(diào)試,排除問題的方式就是在關(guān)鍵的地方記log。

微信事件交互主要是分析微信發(fā)送的xml數(shù)據(jù)包,解析xml,并按照消息指定格式拼接xml發(fā)送給response。在Get方法里用到的CheckSignature 是盛派微信SDK的一個(gè)類,也就是對(duì)簽名校驗(yàn)。

向客戶端發(fā)送消息時(shí)主要ToUserName和FromUserName。我一開始把兩個(gè)參數(shù)寫反了導(dǎo)致客戶端收不到消息。

看完了這篇文章,相信你對(duì)“使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互”有了一定的了解,如果想了解更多相關(guān)知識(shí),歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道,感謝各位的閱讀!

分享題目:使用C#開發(fā)微信公眾號(hào)中如何實(shí)現(xiàn)微信事件交互-創(chuàng)新互聯(lián)
URL網(wǎng)址:http://muchs.cn/article20/ddseco.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供App開發(fā)網(wǎng)站設(shè)計(jì)公司、響應(yīng)式網(wǎng)站、手機(jī)網(wǎng)站建設(shè)、網(wǎng)頁(yè)設(shè)計(jì)公司虛擬主機(jī)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來(lái)源: 創(chuàng)新互聯(lián)

網(wǎng)站優(yōu)化排名