//asp.net C# 微信消息自動(dòng)回復(fù) asp.net版
成都創(chuàng)新互聯(lián)公司成立于2013年,我們提供高端成都網(wǎng)站建設(shè)、網(wǎng)站制作、成都網(wǎng)站設(shè)計(jì)公司、網(wǎng)站定制、成都營(yíng)銷網(wǎng)站建設(shè)、小程序制作、微信公眾號(hào)開發(fā)、成都網(wǎng)站營(yíng)銷服務(wù),提供專業(yè)營(yíng)銷思路、內(nèi)容策劃、視覺設(shè)計(jì)、程序開發(fā)來完成項(xiàng)目落地,為成都資質(zhì)代辦企業(yè)提供源源不斷的流量和訂單咨詢。
protected void Page_Load(object sender, EventArgs e)
{
if (Request.HttpMethod == "POST")
{
string weixin = "";
weixin = PostInput();//獲取xml數(shù)據(jù)
if (!string.IsNullOrEmpty(weixin))
{
ResponseMsg(weixin);////調(diào)用消息適配器
}
}
}
private string PostInput()
{
Stream s = System.Web.HttpContext.Current.Request.InputStream;
byte[] b = new byte[s.Length];
s.Read(b, 0, (int)s.Length);
return Encoding.UTF8.GetString(b);
}
private void ResponseMsg(string weixin)
{
XmlDocument doc = new XmlDocument();
doc.LoadXml(weixin);//讀取xml字符串
XmlElement root = doc.DocumentElement;
ExmlMsg xmlMsg = GetExmlMsg(root);
string messageType = xmlMsg.MsgType;//獲取收到的消息類型。文本(text),圖片(p_w_picpath),語音等。
try
{
//textCase1(xmlMsg);
switch (messageType)
{
//當(dāng)消息為文本時(shí)
case "text":
textCase(xmlMsg);
break;
case "event":
break;
}
Response.End();
}
private void textCase1(ExmlMsg xmlMsg)
{
string resxml = string.Format(ReplyType.Message_Text,
xmlMsg.FromUserName,
xmlMsg.ToUserName,
DateTime.Now.Ticks,
xmlMsg.MsgType);
Response.Write(resxml);
}
若有疑問,請(qǐng)聯(lián)系QQ:250063085