微信公共服务平台开发(.Net 的实现)3-------发送文本消息

14 篇文章 0 订阅

首先建立一个微信消息类。

 class wxmessage  
   {  
       public string FromUserName { get; set; }  
       public string ToUserName { get; set; }  
        public string MsgType { get; set; }  
        public string EventName { get; set; }  
        public string Content { get; set; }
        public string EventKey { get; set; } 
    }


后台代码如下:


protected void Page_Load(object sender, EventArgs e)
     {
         wxmessage wx = GetWxMessage();
         string res = "";

         if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe")
         {//刚关注时的时间,用于欢迎词
             string content = "";
             content = "/:rose欢迎北京永杰友信科技有限公司/:rose\n直接回复“你好”";
             res = sendTextMessage(wx, content);
         }
         else
         {
             if (wx.MsgType == "text" && wx.Content == "你好")
             {
                 res = sendTextMessage(wx, "你好,欢迎使用北京永杰友信科技有限公司公共微信平台!");
             }
             else
             {
                 res = sendTextMessage(wx, "你好,未能识别消息!");
             }
         }

         Response.Write(res);
     }

 private wxmessage GetWxMessage()
     {
         wxmessage wx = new wxmessage();
         StreamReader str = new StreamReader(Request.InputStream, System.Text.Encoding.UTF8);
         XmlDocument xml = new XmlDocument();
         xml.Load(str);
         wx.ToUserName = xml.SelectSingleNode("xml").SelectSingleNode("ToUserName").InnerText;
         wx.FromUserName = xml.SelectSingleNode("xml").SelectSingleNode("FromUserName").InnerText;
         wx.MsgType = xml.SelectSingleNode("xml").SelectSingleNode("MsgType").InnerText;
         if (wx.MsgType.Trim() == "text")
         {
             wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText;
         }
         if (wx.MsgType.Trim() == "event")
         {
             wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText;
         }

         
         return wx;
     }

///   
     /// 发送文字消息  
     ///   
     /// 获取的收发者信息  
     /// 内容  
     /// 
  
    
     private string sendTextMessage(wxmessage wx, string content)
     {
         string res = string.Format(@" ",
             wx.FromUserName, wx.ToUserName, DateTime.Now, content);
         return res;
     }


  • 6
    点赞
  • 4
    收藏
    觉得还不错? 一键收藏
  • 16
    评论

“相关推荐”对你有帮助么?

  • 非常没帮助
  • 没帮助
  • 一般
  • 有帮助
  • 非常有帮助
提交
评论 16
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值