好湿?好紧?好多水好爽自慰,久久久噜久噜久久综合,成人做爰A片免费看黄冈,机机对机机30分钟无遮挡

主頁 > 知識庫 > 微信公眾平臺開發之發送圖文消息.Net代碼解析

微信公眾平臺開發之發送圖文消息.Net代碼解析

熱門標簽:聯通官網400電話辦理 百應電話機器人外呼系統 西寧呼叫中心外呼系統線路商 400電話辦理怎么樣 臨沂智能電話機器人加盟 網絡電話外呼系統上海 蘇州如何辦理400電話 地圖標注軟件免費下載 外呼電話機器人成本

之前我們講過讓微信發送給我們普通的文本信息,下面我們來看看如何發送圖文信息,需要注意的是這里說的是,讓微信發給我們,而不是我們拍個圖片發給微信處理,我們上傳圖片在以后的章節介紹.下面是發送圖文消息的函數,涉及title(標題),description(摘要),picurl(圖片),鏈接(url)幾個關鍵的參數: 

protected string sendPicTextMessage(Msg _mode,string title,string description,string picurl,string url)
  {
    
    string res = string.Format(@"xml>
    ToUserName>![CDATA[{0}]]>/ToUserName>
    FromUserName>![CDATA[{1}]]>/FromUserName>
    CreateTime>{2}/CreateTime>
    MsgType>![CDATA[news]]>/MsgType>
    ArticleCount>1/ArticleCount>
    Articles>
     item>
     Title>![CDATA[{3}]]>/Title> 
     Description>![CDATA[{4}]]>/Description>
     PicUrl>![CDATA[{5}]]>/PicUrl>
     Url>![CDATA[{6}]]>/Url>
     /item>
     /Articles>
     /xml> ",
      _mode.FromUserName, _mode.ToUserName, DateTime.Now,title, description, picurl, url);

    return res;

   }

直接在調用函數即可: 

protected void Page_Load(object sender, EventArgs e)
   {
    
     MyMenu();
     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 (!string.IsNullOrEmpty(wx.EventName)  wx.EventName.Trim() == "CLICK")
     {
       if(wx.EventKey=="Hello")
         res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺!");
       if(wx.EventKey=="P1")
         res = sendTextMessage(wx, "你好,點擊了產品1");
       if(wx.EventKey=="P2")
         res = sendTextMessage(wx, "你好,點擊了產品2");
     }
     else
     {
       if (wx.MsgType == "text"  wx.Content == "你好")
       {
         res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺!");
       }
       if (wx.MsgType == "text"  wx.Content == "圖文")
       {
         res = sendPicTextMessage(wx,"這里是一個標題","這里是摘要","http://mp.weixin.qq.com/wiki/skins/common/images/weixin_wiki_logo.png","http://www.4ugood.net");
       }
       else if (wx.MsgType == "voice")
       {
         res = sendTextMessage(wx, wx.Recognition);
       }
       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;
       wx.EventKey = xml.SelectSingleNode("xml").SelectSingleNode("EventKey").InnerText;
     }
     if (wx.MsgType.Trim() == "voice")
     {
       wx.Recognition = xml.SelectSingleNode("xml").SelectSingleNode("Recognition").InnerText;
     }
     
     return wx;
   }


以上就是本文的全部內容,希望對大家的學習有所幫助,也希望大家多多支持腳本之家。

您可能感興趣的文章:
  • 微信公眾平臺開發之地理位置.Net代碼解析
  • 微信公眾平臺開發之自定義菜單.Net代碼解析
  • .Net微信開發之如何解決access_token過期問題
  • 微信公眾平臺開發之發送文本消息.Net代碼解析
  • .net實現微信公眾賬號接口開發實例代碼
  • .net開發微信公眾平臺實例教程
  • asp.net微信開發(永久素材管理)
  • asp.net開發微信公眾平臺之獲取用戶消息并處理
  • asp.net微信開發(開發者接入)
  • .NET微信公眾號 用戶分組管理

標簽:清遠 慶陽 海西 臨夏 甘肅 聊城 中衛 平涼

巨人網絡通訊聲明:本文標題《微信公眾平臺開發之發送圖文消息.Net代碼解析》,本文關鍵詞  微信,公眾,平臺,開,發之,;如發現本文內容存在版權問題,煩請提供相關信息告之我們,我們將及時溝通與處理。本站內容系統采集于網絡,涉及言論、版權與本站無關。
  • 相關文章
  • 下面列出與本文章《微信公眾平臺開發之發送圖文消息.Net代碼解析》相關的同類信息!
  • 本頁收集關于微信公眾平臺開發之發送圖文消息.Net代碼解析的相關信息資訊供網民參考!
  • 推薦文章