這篇文章主要介紹如何利用asp.net開發(fā)微信公眾平臺之獲取用戶消息并處理,文中介紹的非常詳細,具有一定的參考價值,感興趣的小伙伴們一定要看完!
專注于為中小企業(yè)提供成都做網(wǎng)站、成都網(wǎng)站制作、成都外貿(mào)網(wǎng)站建設(shè)服務(wù),電腦端+手機端+微信端的三站合一,更高效的管理,為中小企業(yè)中寧免費做網(wǎng)站提供優(yōu)質(zhì)的服務(wù)。我們立足成都,凝聚了一批互聯(lián)網(wǎng)行業(yè)人才,有力地推動了上1000家企業(yè)的穩(wěn)健成長,幫助中小企業(yè)通過網(wǎng)站建設(shè)實現(xiàn)規(guī)模擴充和轉(zhuǎn)變。
獲取用戶消息
用戶發(fā)送的消息是在微信服務(wù)器發(fā)送的一個HTTP POST請求中包含的,獲取用戶發(fā)送的消息要從POST請求的數(shù)據(jù)流中獲取
微信服務(wù)器推送消息到服務(wù)器的HTTP請求報文示例
POST /cgi-bin/wxpush? msg_signature=477715d11cdb4164915debcba66cb864d751f3e6×tamp=1409659813&nonce=1372623149 HTTP/1.1
Host: qy.weixin.qq.com
從POST請求中獲取數(shù)據(jù)
這樣獲得的用戶消息可能有兩種情況:加密后的消息或是未加密的消息,這與你在微信公共平臺配置網(wǎng)站時 消息加解密模式的選取 有關(guān),如果選擇了明文模式,則不會加密,如果選擇了兼容模式,則密文和明文都存在,如果選擇的是安全模式,則用戶消息會被加密,需要解密后才能進一步處理
2.回復用戶消息
參考微信公共平臺開發(fā)文檔
?文本消息
<xml> <ToUserName><![CDATA[{0}]]></ToUserName> <FromUserName><![CDATA[{1}]]></FromUserName> <CreateTime>{2}</CreateTime> <MsgType><![CDATA[text]]></MsgType> <Content><![CDATA[{3}]]></Content> </xml>
?圖片消息
<xml> <ToUserName><![CDATA[{0}]]></ToUserName> <FromUserName><![CDATA[{1}]]></FromUserName> <CreateTime>{2}</CreateTime> <MsgType><![CDATA[image]]></MsgType> <Image> <MediaId><![CDATA[{3}]]></MediaId> </Image> </xml>
消息格式已經(jīng)有了,接著我們只需要設(shè)置相應的參數(shù)即可。
responseContent = string.Format(ReplyType.Message_Text, FromUserName.InnerText, ToUserName.InnerText, DateTime.Now.Ticks, String.IsNullOrEmpty(reply)?"Sorry,I can not follow you." :reply);
3.用戶消息與服務(wù)器消息的加密解密
微信公共平臺開發(fā)者文檔中提供有c++,C#,java等各種語言的加密解密示例,我們用到的是C#,只需要將其中的兩個文件添加到項目中即可,Sample.cs是微信團隊給出的示例代碼,不需要引用,對
WXBizMsgCrypt.cs與Cryptography.cs文件添加引用即可。為了進一步封裝和方便調(diào)用,我又新建了一個類WeChatSecurityHelper
類中的定義兩個方法,分別來進行加密(EncryptMsg)和解密(DecryptMsg),創(chuàng)建一個WXBizMsgCrypt對象,調(diào)用它的方法加解密,具體代碼可見代碼示例
WeChatSecurityHelper
using System; using System.Collections.Generic; using System.Linq; using System.Text; using System.Threading.Tasks; namespace Common { public class WeChatSecurityHelper { /// <summary> /// 定義Token,與微信公共平臺上的Token保持一致 /// </summary> private const string Token = "StupidMe"; /// <summary> /// AppId 要與 微信公共平臺 上的 AppId 保持一致 /// </summary> private const string AppId = "11111111111"; /// <summary> /// 加密用 /// </summary> private const string AESKey = "pvX2KZWRLQSkUAbvArgLSAxCwTtxgFWF3XOnJ9iEUMG"; private static Tencent.WXBizMsgCrypt wxcpt = new Tencent.WXBizMsgCrypt(Token, AESKey, AppId); private string signature,timestamp,nonce; private static LogHelper logger = new LogHelper(typeof(WeChatSecurityHelper)); public WeChatSecurityHelper(string signature, string timestamp, string nonce) { this.signature = signature; this.timestamp = timestamp; this.nonce = nonce; } /// <summary> /// 加密消息 /// </summary> /// <param name="msg">要加密的消息</param> /// <returns>加密后的消息</returns> public string EncryptMsg(string msg) { string encryptMsg=""; int result = wxcpt.EncryptMsg(msg, timestamp, nonce, ref encryptMsg); if (result == 0) { return encryptMsg; } else { logger.Error("消息加密失敗"); return ""; } } /// <summary> /// 解密消息 /// </summary> /// <param name="msg">消息體</param> /// <returns>明文消息</returns> public string DecryptMsg(string msg) { string decryptMsg = ""; int result = wxcpt.DecryptMsg(signature, timestamp, nonce, msg,ref decryptMsg); if (result != 0) { logger.Error("消息解密失敗,result:"+result); } return decryptMsg; } } }
以上是“如何利用asp.net開發(fā)微信公眾平臺之獲取用戶消息并處理”這篇文章的所有內(nèi)容,感謝各位的閱讀!希望分享的內(nèi)容對大家有幫助,更多相關(guān)知識,歡迎關(guān)注創(chuàng)新互聯(lián)行業(yè)資訊頻道!
新聞標題:如何利用asp.net開發(fā)微信公眾平臺之獲取用戶消息并處理
地址分享:http://aaarwkj.com/article14/peggde.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供云服務(wù)器、ChatGPT、搜索引擎優(yōu)化、響應式網(wǎng)站、App開發(fā)、網(wǎng)站設(shè)計公司
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時需注明來源: 創(chuàng)新互聯(lián)