溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

微信開發(fā)asp.net的示例分析

發(fā)布時(shí)間:2021-09-10 11:05:18 來源:億速云 閱讀:134 作者:小新 欄目:移動(dòng)開發(fā)

這篇文章主要為大家展示了“微信開發(fā)asp.net的示例分析”,內(nèi)容簡而易懂,條理清晰,希望能夠幫助大家解決疑惑,下面讓小編帶領(lǐng)大家一起研究并學(xué)習(xí)一下“微信開發(fā)asp.net的示例分析”這篇文章吧。

最近在接觸微信開發(fā),也有在看php的代碼,不過最后還是使用c#語言了;

后臺(tái)新建了index.ashx文件,這樣速度比較快;

首先頂部引用了

using System.IO;
using System.Xml;

一個(gè)是為了實(shí)現(xiàn)接收xml文件流,一個(gè)是為了后面對(duì)xml文件的處理;

public class index : IHttpHandler {

    private readonly string Token = "xxxx";//與微信公眾賬號(hào)后臺(tái)的Token設(shè)置保持一致,區(qū)分大小寫。
    
    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 - 當(dāng)有用戶想公眾賬號(hào)發(fā)送消息時(shí)觸發(fā),寫事件
        }

        context.Response.End();
    }

首先設(shè)置好Token,接收各種參數(shù),請(qǐng)求方式是以get的方式發(fā)送;

這里主要呢是CheckSign()函數(shù);

public bool CheckSign(string signature, string timestamp, string nonce)
    {
        string[] strs = new string[] { Token, timestamp, nonce };
        Array.Sort(strs);//排序
        string strNew = string.Join("", strs);//連接成字符串
        strNew = System.Web.Security.FormsAuthentication.HashPasswordForStoringInConfigFile(strNew, "SHA1");//加密
        if (signature == strNew.ToLower())
            return true;
        return false;
    }

其實(shí)這里的意識(shí)就是接收到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;

寫的不好指出哈?。?/p>

這樣我們就可以對(duì)接收到的數(shù)據(jù)進(jìn)行判斷,做出相應(yīng)的操作,最主要的還是要熟悉接口;

下面就一個(gè)例子說明一下,可能沒有抽象的很好:

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 = "歡迎關(guān)注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;
    }
public string transmitText(string[] xmlArray)
    {
        string xmlstring = @"<xml>
                            <ToUserName><![CDATA[{0}]]></ToUserName>
                            <FromUserName><![CDATA[{1}]]></FromUserName>
                            <CreateTime>{2}</CreateTime>
                            <MsgType><![CDATA[text]]></MsgType>
                            <Content><![CDATA[{3}]]></Content>
                            </xml>";
        string xmlstr = string.Format(xmlstring, xmlArray);
        return xmlstr;
    }

這樣子就完成的一個(gè)簡單的回復(fù)了;

微信開發(fā)asp.net的示例分析

以上是“微信開發(fā)asp.net的示例分析”這篇文章的所有內(nèi)容,感謝各位的閱讀!相信大家都有了一定的了解,希望分享的內(nèi)容對(duì)大家有所幫助,如果還想學(xué)習(xí)更多知識(shí),歡迎關(guān)注億速云行業(yè)資訊頻道!

向AI問一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場,如果涉及侵權(quán)請(qǐng)聯(lián)系站長郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI