详解微信公众平台开发之发送文本消息.Net代码解析方法

广告:宝塔Linux面板高效运维的服务器管理软件 点击【 https://www.bt.cn/p/uNLv1L 】立即购买

详解微信公众平台开发之发送文本消息.Net代码解析方法

这篇文章详解微信公众平台开发之发送文本消息.Net代码解析方法

.Net实现微信公共服务平台开发中的发送文本消息功能,具体内容如下

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

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;  }
登录后复制

以上就是详解微信公众平台开发之发送文本消息.Net代码解析方法的详细内容,更多请关注9543建站博客其它相关文章!

广告:SSL证书一年128.66元起,点击购买~~~

9543建站博客
一个专注于网站开发、微信开发的技术类纯净博客。

作者头像
admin创始人

肥猫,知名SEO博客站长,14年SEO经验。

上一篇:微信小程序 教程之模板
下一篇:已是最新文章

发表评论

关闭广告
关闭广告