获取用户消息
用户发送的消息是在微信服务器发送的一个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.回复用户消息
参考微信公共平台开发文档
•文本消息
{2}
•图片消息
{2}
消息格式已经有了,接着我们只需要设置相应的参数即可。
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
using system; using system.collections.generic; using system.linq; using system.text; using system.threading.tasks; namespace common { public class wechatsecurityhelper { ////// 定义token,与微信公共平台上的token保持一致 /// private const string token = "stupidme"; ////// appid 要与 微信公共平台 上的 appid 保持一致 /// private const string appid = "11111111111"; ////// 加密用 /// 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; } ////// 加密消息 /// /// 要加密的消息 ///加密后的消息 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 ""; } } ////// 解密消息 /// /// 消息体 ///明文消息 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; } } }
以上所述就是本文的全部内容了,希望大家能够喜欢。