微信公众号搜"智元新知"关注
微信扫一扫可直接关注哦!

ASP.NET MVC 微信公共平台开发之获取用户消息并处理

ASP.NET MVC 微信公共平台开发

获取用户消息并处理

  1. 用户发送的消息是在微信服务器发送的一个HTTP POST请求中包含的,获取用户发送的消息要从POST请求的数据流中获取

    微信服务器推送消息到服务器的HTTP请求报文示例

    POST /cgi-bin/wxpush? msg_signature=477715d11cdb4164915debcba66cb864d751f3e6&timestamp=1409659813&nonce=1372623149 HTTP/1.1

        Host: qy.weixin.qq.com

    从POST请求中获取数据

    这样获得的用户消息可能有两种情况:加密后的消息或是未加密的消息,这与你在微信公共平台配置网站时 消息加解密模式的选取 有关,如果选择了明文模式,则不会加密,如果选择了兼容模式,则密文和明文都存在,如果选择的是安全模式,则用户消息会被加密,需要解密后才能进一步处理

  2. 参考微信公共平台开发文档

    • 文本消息

    <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>

消息格式已经有了,接着我们只需要设置相应的参数即可。

responseContent = string.Format(ReplyType.Message_Text,

FromUserName.InnerText,

ToUserName.InnerText,1)"> 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对象,调用它的方法加解密,具体代码可见代码示例

 1 using System;
 2  System.Collections.Generic;
 3  System.Linq;
 4  System.Text;
 5  System.Threading.Tasks;
 6 
 7 namespace Common
 8 {
 9     public class WeChatSecurityHelper
10     {
11         /// <summary>
12         /// 定义Token,与微信公共平台上的Token保持一致
13         </summary>
14         private const string Token = "StupidMe";
15         16          AppId 要与 微信公共平台 上的 AppId 保持一致
17         18         string AppId = 1111111111119         20          加密用 
21         22         string AESKey = pvX2KZWRLQSkUAbvArgLSAxCwTtxgFWF3XOnJ9iEUMG23 
24         static Tencent.WXBizMsgCrypt wxcpt = new Tencent.WXBizMsgCrypt(Token,AESKey,AppId);
25         string signature,timestamp,nonce;
26         static LogHelper logger = new LogHelper(typeof(WeChatSecurityHelper));
27 
28 
29         public WeChatSecurityHelper(string signature,string timestamp,1)"> nonce)
30         {
31             this.signature = signature;
32             this.timestamp = timestamp;
33             this.nonce = nonce;
34         }
35 
36         37          加密消息
38         39         <param name="msg">要加密的消息</param>
40         <returns>加密后的消息</returns>
41         string EncryptMsg( msg)
42 43             string encryptMsg=""44             int result = wxcpt.EncryptMsg(msg,nonce,1)">ref encryptMsg);
45             if (result == 0)
46             {
47                 return encryptMsg;
48             }
49             else
50 51                 logger.Error(消息加密失败);
52                 return 53 54 55 
56         57          解密消息
58         59         消息体60         明文消息61         string DecryptMsg(62 63             string decryptMsg = 64             int result = wxcpt.DecryptMsg(signature,msg,1)"> decryptMsg);
65             if (result != 66 67                 logger.Error(消息解密失败,result:"+result);
68 69              decryptMsg;
70 71     }
72 }
WeChatSecurityHelper Code

 

版权声明:本文内容由互联网用户自发贡献,该文观点与技术仅代表作者本人。本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌侵权/违法违规的内容, 请发送邮件至 dio@foxmail.com 举报,一经查实,本站将立刻删除。

相关推荐