真实的国产乱ⅩXXX66竹夫人,五月香六月婷婷激情综合,亚洲日本VA一区二区三区,亚洲精品一区二区三区麻豆

成都創(chuàng)新互聯(lián)網(wǎng)站制作重慶分公司

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

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

成都創(chuàng)新互聯(lián)專注于企業(yè)網(wǎng)絡(luò)營銷推廣、網(wǎng)站重做改版、鐵門關(guān)網(wǎng)站定制設(shè)計(jì)、自適應(yīng)品牌網(wǎng)站建設(shè)、H5頁面制作、商城建設(shè)、集團(tuán)公司官網(wǎng)建設(shè)、成都外貿(mào)網(wǎng)站建設(shè)、高端網(wǎng)站制作、響應(yīng)式網(wǎng)頁設(shè)計(jì)等建站業(yè)務(wù),價(jià)格優(yōu)惠性價(jià)比高,為鐵門關(guān)等各大城市提供網(wǎng)站開發(fā)制作服務(wù)。

前言

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

微信事件交互

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

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

看效果

使用C#開發(fā)微信公眾號中如何實(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測試公眾平臺";              
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 @"                      
                      
                      
{2}                      
                      
                 
";            
}    
}
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ā)微信接口的過程中不能調(diào)試,唯一排除問題的方式就是在關(guān)鍵的地方記log。

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

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

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


網(wǎng)頁名稱:使用C#開發(fā)微信公眾號中如何實(shí)現(xiàn)微信事件交互
URL鏈接:http://weahome.cn/article/isppgi.html

其他資訊

在線咨詢

微信咨詢

電話咨詢

028-86922220(工作日)

18980820575(7×24)

提交需求

返回頂部