免费观看又色又爽又黄的小说免费_美女福利视频国产片_亚洲欧美精品_美国一级大黄大色毛片

微信公眾平臺開發之.Net如何實現發送圖文消息-創新互聯

這篇文章主要為大家展示了“微信公眾平臺開發之.Net如何實現發送圖文消息”,內容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領大家一起研究并學習一下“微信公眾平臺開發之.Net如何實現發送圖文消息”這篇文章吧。

成都創新互聯-專業網站定制、快速模板網站建設、高性價比巴東網站開發、企業建站全套包干低至880元,成熟完善的模板庫,直接使用。一站式巴東網站制作公司更省心,省錢,快速模板網站建設找我們,業務覆蓋巴東地區。費用合理售后完善,10多年實體公司更值得信賴。
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,"這里是一個標題","這里是摘要","/tupian/20230522/404.html
       }
       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如何實現發送圖文消息-創新互聯
本文來源:http://m.newbst.com/article44/cosshe.html

成都網站建設公司_創新互聯,為您提供關鍵詞優化企業網站制作、定制網站外貿建站全網營銷推廣、網站導航

廣告

聲明:本網站發布的內容(圖片、視頻和文字)以用戶投稿、用戶轉載內容為主,如果涉及侵權請盡快告知,我們將會在第一時間刪除。文章觀點不代表本網站立場,如需處理請聯系客服。電話:028-86922220;郵箱:631063699@qq.com。內容未經允許不得轉載,或轉載時需注明來源: 創新互聯

成都做網站