這篇文章主要介紹了asp.net開發微信公眾平台之擷取使用者訊息並處理的相關資料,需要的朋友可以參考下
擷取使用者訊息
使用者發送的訊息是在微信伺服器發送的一個HTTP POST請求中包含的,擷取使用者發送的訊息要從POST請求的資料流中擷取
微信伺服器推送訊息到伺服器的HTTP請求報文樣本
POST /cgi-bin/wxpush? msg_signature=477715d11cdb4164915debcba66cb864d751f3e6×tamp=1409659813&nonce=1372623149 HTTP/1.1
Host: qy.weixin.qq.com
從POST請求中擷取資料
這樣獲得的使用者訊息可能有兩種情況:加密後的訊息或是未加密的訊息,這與你在微信公用平台配置網站時 訊息加解密模式的選取 有關,如果選擇了明文模式,則不會加密,如果選擇了相容模式,則密文和明文都存在,如果選擇的是安全模式,則使用者訊息會被加密,需要解密後才能進一步處理
2.回複使用者訊息
參考微信公用平台開發文檔
•簡訊
?
1 2 3 4 5 6 7 |
<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 |
<xml> <ToUserName><![CDATA[{0}]]></ToUserName> <FromUserName><![CDATA[{1}]]></FromUserName> <CreateTime>{2}</CreateTime> <MsgType><![CDATA[image]]></MsgType> <Image> <MediaId><![CDATA[{3}]]></MediaId> </Image> </xml> |
訊息格式已經有了,接著我們只需要設定相應的參數即可。
?
1 2 3 4 5 |
responseContent = string.Format(ReplyType.Message_Text, FromUserName.InnerText, ToUserName.InnerText, DateTime.Now.Ticks, String.IsNullOrEmpty(reply)?"Sorry,I can not follow you." :reply); |
3.使用者訊息與伺服器訊息的加密解密
微信公用平台開發人員文檔中提供有c++,C#,java等各種語言的加密解密樣本,我們用到的是C#,只需要將其中的兩個檔案添加到項目中即可,Sample.cs是微信團隊給出的範例程式碼,不需要引用,對
WXBizMsgCrypt.cs與Cryptography.cs檔案添加引用即可。為了進一步封裝和方便調用,我又建立了一個類WeChatSecurityHelper
類中的定義兩個方法,分別來進行加密(EncryptMsg)和解密(DecryptMsg),建立一個WXBizMsgCrypt對象,調用它的方法加解密,具體代碼可見程式碼範例
WeChatSecurityHelper
?
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 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 |
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; } } } |
以上所述就是本文的全部內容了,希望大家能夠喜歡。