zoukankan      html  css  js  c++  java
  • 微信开发asp.net

    最近在接触微信开发,也有在看php的代码,不过最后还是使用c#语言了;

    后台新建了index.ashx文件,这样速度比较快;

    首先顶部引用了

    using System.IO;
    using System.Xml;

    一个是为了实现接收xml文件流,一个是为了后面对xml文件的处理;

    public class index : IHttpHandler {
    
        private readonly string Token = "xxxx";//与微信公众账号后台的Token设置保持一致,区分大小写。
        
        public void ProcessRequest (HttpContext context) {
            context.Response.ContentType = "text/plain";
    
            string signature = context.Request["signature"];
            string timestamp = context.Request["timestamp"];
            string nonce = context.Request["nonce"];
            string echostr = context.Request["echostr"];
    
            if (context.Request.HttpMethod == "GET")
            {
                if (CheckSign(signature, timestamp, nonce))
                {
                    context.Response.Output.Write(echostr);
                }
            }
            else
            {
                //post method - 当有用户想公众账号发送消息时触发,写事件
            }
    
            context.Response.End();
        }

    首先设置好Token,接收各种参数,请求方式是以get的方式发送;

    这里主要呢是CheckSign()函数;

     1 public bool CheckSign(string signature, string timestamp, string nonce)
     2     {
     3         string[] strs = new string[] { Token, timestamp, nonce };
     4         Array.Sort(strs);//排序
     5         string strNew = string.Join("", strs);//连接成字符串
     6         strNew = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strNew, "SHA1");//加密
     7         if (signature == strNew.ToLower())
     8             return true;
     9         return false;
    10     }

    其实这里的意识就是接收到A/B/C/D,E为自定义,B/C/E生成F,与A比较,相等返回输出D;

    string xmlFromWeChat = new StreamReader(context.Request.InputStream).ReadToEnd();//读取XML流
                XmlDocument xmldocument = new XmlDocument();
                xmldocument.LoadXml(xmlFromWeChat);加载字符串
                string fromContent = xmldocument.GetElementsByTagName("Content").Item(0).InnerText;
                string fromMsgType = xmldocument.GetElementsByTagName("MsgType").Item(0).InnerText;

    写的不好指出哈!!

    这样我们就可以对接收到的数据进行判断,做出相应的操作,最主要的还是要熟悉接口;

    下面就一个例子说明一下,可能没有抽象的很好:

    public string receiveText(string xmlFromWeChat)
        {
            XmlDocument xmlText = new XmlDocument();
            xmlText.LoadXml(xmlFromWeChat);
            string content;
            string xmlStr;
            string keyword = xmlText.GetElementsByTagName("Content").Item(0).InnerText.Trim();
            
                   content = "欢迎关注xxx!";
                   string[] defArray = { xmlText.GetElementsByTagName("FromUserName").Item(0).InnerText, 
                                  xmlText.GetElementsByTagName("ToUserName").Item(0).InnerText, 
                                  ConvertDateTimeInt(DateTime.Now).ToString(),
                                  content};
                   xmlStr = transmitText(defArray);
                   
            }
            
            
            return xmlStr;
        }
     1 public string transmitText(string[] xmlArray)
     2     {
     3         string xmlstring = @"<xml>
     4                             <ToUserName><![CDATA[{0}]]></ToUserName>
     5                             <FromUserName><![CDATA[{1}]]></FromUserName>
     6                             <CreateTime>{2}</CreateTime>
     7                             <MsgType><![CDATA[text]]></MsgType>
     8                             <Content><![CDATA[{3}]]></Content>
     9                             </xml>";
    10         string xmlstr = string.Format(xmlstring, xmlArray);
    11         return xmlstr;
    12     }

    这样子就完成的一个简单的回复了;

  • 相关阅读:
    问题描述:判断一个整数 n 是否为 2 的幂次方
    C#的关键字Explicit 和 Implicit
    .NET写入文件操作
    C# Main函数详解
    SpringBoot增加过滤XSS脚本攻击
    Hutool工具包导出Excel文件异常 You need to add dependency of poi-ooxml to your project
    微信H5表单点击输入框提示防欺诈盗号,请勿支付或输入qq密码
    RedisTemplate执行lua脚本在Redis集群模式下报错EvalSha is not supported in cluster environment.
    SpringBoot使用RedisTemplate+Lua脚本实现Redis分布式锁
    SpringBoot使用Thymeleaf打成jar包部署找不到页面
  • 原文地址:https://www.cnblogs.com/liwon/p/3622084.html
Copyright © 2011-2022 走看看