search
HomeBackend DevelopmentC#.Net TutorialDetailed explanation of asp.net implementation of WeChat public account interface development method

This article is mainly a detailed explanationasp.netImplementing WeChat public accountInterfaceDevelopment method, interested friends can refer to it

Speaking of WeChat public accounts, everyone is familiar with it. Using this platform can add a new highlight to the website or system. Let’s go directly to the topic. Be sure to read the official API carefully before using it. document.
Method implemented using .net:
//WeChat interface address page code:


weixin _wx = new weixin(); 
string postStr = ""; 
if (Request.HttpMethod.ToLower() == "post") 
{ 
Stream s = System.Web.HttpContext.Current.Request.InputStream; 
byte[] b = new byte[s.Length]; 
s.Read(b, 0, (int)s.Length); 
postStr = Encoding.UTF8.GetString(b); 
if (!string.IsNullOrEmpty(postStr)) //请求处理 
{ 
_wx.Handle(postStr); 
} 
} 
else 
{ 
_wx.Auth(); 
}

Specific Processing class


/// <summary> 
/// 微信公众平台操作类 
/// </summary> 
public class weixin 
{ 
private string Token = "my_weixin_token"; //换成自己的token 
public void Auth() 
{ 
string echoStr = System.Web.HttpContext.Current.Request.QueryString["echoStr"]; 
if (CheckSignature()) //校验签名是否正确 
{ 
if (!string.IsNullOrEmpty(echoStr)) 
{ 
System.Web.HttpContext.Current.Response.Write(echoStr); //返回原值表示校验成功 
System.Web.HttpContext.Current.Response.End(); 
} 
} 
} 
 
 
public void Handle(string postStr) 
{ 
//封装请求类 
XmlDocument doc = new XmlDocument(); 
doc.LoadXml(postStr); 
XmlElement rootElement = doc.DocumentElement; 
//MsgType 
XmlNode MsgType = rootElement.SelectSingleNode("MsgType"); 
//接收的值--->接收消息类(也称为消息推送) 
RequestXML requestXML = new RequestXML(); 
requestXML.ToUserName = rootElement.SelectSingleNode("ToUserName").InnerText; 
requestXML.FromUserName = rootElement.SelectSingleNode("FromUserName").InnerText; 
requestXML.CreateTime = rootElement.SelectSingleNode("CreateTime").InnerText; 
requestXML.MsgType = MsgType.InnerText; 
 
//根据不同的类型进行不同的处理 
switch (requestXML.MsgType) 
{ 
case "text": //文本消息 
requestXML.Content = rootElement.SelectSingleNode("Content").InnerText; 
break; 
case "image": //图片 
requestXML.PicUrl = rootElement.SelectSingleNode("PicUrl").InnerText; 
break; 
case "location": //位置 
requestXML.Location_X = rootElement.SelectSingleNode("Location_X").InnerText; 
requestXML.Location_Y = rootElement.SelectSingleNode("Location_Y").InnerText; 
requestXML.Scale = rootElement.SelectSingleNode("Scale").InnerText; 
requestXML.Label = rootElement.SelectSingleNode("Label").InnerText; 
break; 
case "link": //链接 
break; 
case "event": //事件推送 支持V4.5+ 
break; 
} 
 
//消息回复 
ResponseMsg(requestXML); 
} 
 
 
/// <summary> 
/// 验证微信签名 
/// * 将token、timestamp、nonce三个参数进行字典序排序 
/// * 将三个参数字符串拼接成一个字符串进行sha1加密 
/// * 开发者获得加密后的字符串可与signature对比,标识该请求来源于微信。 
/// </summary> 
/// <returns></returns> 
private bool CheckSignature() 
{ 
string signature = System.Web.HttpContext.Current.Request.QueryString["signature"]; 
string timestamp = System.Web.HttpContext.Current.Request.QueryString["timestamp"]; 
string nonce = System.Web.HttpContext.Current.Request.QueryString["nonce"]; 
//加密/校验流程: 
//1. 将token、timestamp、nonce三个参数进行字典序排序 
string[] ArrTmp = { Token, timestamp, nonce }; 
Array.Sort(ArrTmp);//字典排序 
//2.将三个参数字符串拼接成一个字符串进行sha1加密 
string tmpStr = string.Join("", ArrTmp); 
tmpStr = FormsAuthentication.HashPasswordForStoringInConfigFile(tmpStr, "SHA1"); 
tmpStr = tmpStr.ToLower(); 
//3.开发者获得加密后的字符串可与signature对比,标识该请求来源于微信。 
if (tmpStr == signature) 
{ 
return true; 
} 
else 
{ 
return false; 
} 
} 
 
/// <summary> 
/// 消息回复(微信信息返回) 
/// </summary> 
/// <param name="requestXML">The request XML.</param> 
private void ResponseMsg(RequestXML requestXML) 
{ 
try 
{ 
string resxml = ""; 
//主要是调用数据库进行关键词匹配自动回复内容,可以根据自己的业务情况编写。 
//1.通常有,没有匹配任何指令时,返回帮助信息 
AutoResponse mi = new AutoResponse(requestXML.Content, requestXML.FromUserName); 
 
switch (requestXML.MsgType) 
{ 
case "text": 
//在这里执行一系列操作,从而实现自动回复内容. 
string _reMsg = mi.GetReMsg(); 
if (mi.msgType == 1) 
{ 
resxml = "<xml><ToUserName><![CDATA[" + requestXML.FromUserName + "]]></ToUserName><FromUserName><![CDATA[" + requestXML.ToUserName + "]]></FromUserName><CreateTime>" + ConvertDateTimeInt(DateTime.Now) + "</CreateTime><MsgType><![CDATA[news]]></MsgType><Content><![CDATA[]]></Content><ArticleCount>2</ArticleCount><Articles>"; 
resxml += mi.GetRePic(requestXML.FromUserName); 
resxml += "</Articles><FuncFlag>1</FuncFlag></xml>"; 
} 
else 
{ 
resxml = "<xml><ToUserName><![CDATA[" + requestXML.FromUserName + "]]></ToUserName><FromUserName><![CDATA[" + requestXML.ToUserName + "]]></FromUserName><CreateTime>" + ConvertDateTimeInt(DateTime.Now) + "</CreateTime><MsgType><![CDATA[text]]></MsgType><Content><![CDATA[" + _reMsg + "]]></Content><FuncFlag>1</FuncFlag></xml>"; 
} 
break; 
case "location": 
string city = GetMapInfo(requestXML.Location_X, requestXML.Location_Y); 
if (city == "0") 
{ 
resxml = "<xml><ToUserName><![CDATA[" + requestXML.FromUserName + "]]></ToUserName><FromUserName><![CDATA[" + requestXML.ToUserName + "]]></FromUserName><CreateTime>" + ConvertDateTimeInt(DateTime.Now) + "</CreateTime><MsgType><![CDATA[text]]></MsgType><Content><![CDATA[好啦,我们知道您的位置啦。您可以:" + mi.GetDefault() + "]]></Content><FuncFlag>1</FuncFlag></xml>"; 
} 
else 
{ 
resxml = "<xml><ToUserName><![CDATA[" + requestXML.FromUserName + "]]></ToUserName><FromUserName><![CDATA[" + requestXML.ToUserName + "]]></FromUserName><CreateTime>" + ConvertDateTimeInt(DateTime.Now) + "</CreateTime><MsgType><![CDATA[text]]></MsgType><Content><![CDATA[好啦,我们知道您的位置啦。您可以:" + mi.GetDefault() + "]]></Content><FuncFlag>1</FuncFlag></xml>"; 
} 
break; 
case "image": 
//图文混合的消息 具体格式请见官方API“回复图文消息” 
break; 
} 
 
System.Web.HttpContext.Current.Response.Write(resxml); 
WriteToDB(requestXML, resxml, mi.pid); 
} 
catch (Exception ex) 
{ 
//WriteTxt("异常:" + ex.Message + "Struck:" + ex.StackTrace.ToString()); 
//wx_logs.MyInsert("异常:" + ex.Message + "Struck:" + ex.StackTrace.ToString()); 
} 
} 
 
 
/// <summary> 
/// unix时间转换为datetime 
/// </summary> 
/// <param name="timeStamp"></param> 
/// <returns></returns> 
private DateTime UnixTimeToTime(string timeStamp) 
{ 
DateTime dtStart = TimeZone.CurrentTimeZone.ToLocalTime(new DateTime(1970, 1, 1)); 
long lTime = long.Parse(timeStamp + "0000000"); 
TimeSpan toNow = new TimeSpan(lTime); 
return dtStart.Add(toNow); 
} 
 
 
/// <summary> 
/// datetime转换为unixtime 
/// </summary> 
/// <param name="time"></param> 
/// <returns></returns> 
private int ConvertDateTimeInt(System.DateTime time) 
{ 
System.DateTime startTime = TimeZone.CurrentTimeZone.ToLocalTime(new System.DateTime(1970, 1, 1)); 
return (int)(time - startTime).TotalSeconds; 
} 
 
 
/// <summary> 
/// 调用百度地图,返回坐标信息 
/// </summary> 
/// <param name="y">经度</param> 
/// <param name="x">纬度</param> 
/// <returns></returns> 
public string GetMapInfo(string x, string y) 
{ 
try 
{ 
string res = string.Empty; 
string parame = string.Empty; 
string url = "http://maps.googleapis.com/maps/api/geocode/xml"; 
 
parame = "latlng=" + x + "," + y + "&language=zh-CN&sensor=false";//此key为个人申请 
res = webRequestPost(url, parame); 
 
XmlDocument doc = new XmlDocument(); 
doc.LoadXml(res); 
 
XmlElement rootElement = doc.DocumentElement; 
string Status = rootElement.SelectSingleNode("status").InnerText; 
 
if (Status == "OK") 
{ 
//仅获取城市 
XmlNodeList xmlResults = rootElement.SelectSingleNode("/GeocodeResponse").ChildNodes; 
for (int i = 0; i < xmlResults.Count; i++) 
{ 
XmlNode childNode = xmlResults[i]; 
if (childNode.Name == "status") { 
continue; 
} 
string city = "0"; 
for (int w = 0; w < childNode.ChildNodes.Count; w++) 
{ 
for (int q = 0; q < childNode.ChildNodes[w].ChildNodes.Count; q++) 
{ 
XmlNode childeTwo = childNode.ChildNodes[w].ChildNodes[q]; 
if (childeTwo.Name == "long_name") 
{ 
city = childeTwo.InnerText; 
} 
else if (childeTwo.InnerText == "locality") 
{ 
return city; 
} 
} 
} 
return city; 
} 
} 
} 
catch (Exception ex) 
{ 
//WriteTxt("map异常:" + ex.Message.ToString() + "Struck:" + ex.StackTrace.ToString()); 
return "0"; 
} 
return "0"; 
} 
 
 
/// <summary> 
/// Post 提交调用抓取 
/// </summary> 
/// <param name="url">提交地址</param> 
/// <param name="param">参数</param> 
/// <returns>string</returns> 
public string webRequestPost(string url, string param) 
{ 
byte[] bs = System.Text.Encoding.UTF8.GetBytes(param); 
HttpWebRequest req = (HttpWebRequest)HttpWebRequest.Create(url + "?" + param); 
req.Method = "Post"; 
req.Timeout = 120 * 1000; 
req.ContentType = "application/x-www-form-urlencoded;"; 
req.ContentLength = bs.Length; 
 
using (Stream reqStream = req.GetRequestStream()) 
{ 
reqStream.Write(bs, 0, bs.Length); 
reqStream.Flush(); 
} 
 
using (WebResponse wr = req.GetResponse()) 
{ 
//在这里对接收到的页面内容进行处理 
Stream strm = wr.GetResponseStream(); 
StreamReader sr = new StreamReader(strm, System.Text.Encoding.UTF8); 
 
string line; 
System.Text.StringBuilder sb = new System.Text.StringBuilder(); 
while ((line = sr.ReadLine()) != null) 
{ 
sb.Append(line + System.Environment.NewLine); 
} 
sr.Close(); 
strm.Close(); 
return sb.ToString(); 
} 
} 
 
/// <summary> 
/// 将本次交互信息保存至数据库中 
/// </summary> 
/// <param name="requestXML"></param> 
/// <param name="_xml"></param> 
/// <param name="_pid"></param> 
private void WriteToDB(RequestXML requestXML, string _xml, int _pid) 
{ 
WeiXinMsg wx = new WeiXinMsg(); 
wx.FromUserName = requestXML.FromUserName; 
wx.ToUserName = requestXML.ToUserName; 
wx.MsgType = requestXML.MsgType; 
wx.Msg = requestXML.Content; 
wx.Creatime = requestXML.CreateTime; 
wx.Location_X = requestXML.Location_X; 
wx.Location_Y = requestXML.Location_Y; 
wx.Label = requestXML.Label; 
wx.Scale = requestXML.Scale; 
wx.PicUrl = requestXML.PicUrl; 
wx.reply = _xml; 
wx.pid = _pid; 
try 
{ 
wx.Add(); 
} 
catch (Exception ex) 
{ 
//wx_logs.MyInsert(ex.Message); 
//ex.message; 
} 
} 
}

Response classMODEL


 #region 微信请求类 RequestXML 
/// <summary> 
/// 微信请求类 
/// </summary> 
public class RequestXML 
{ 
private string toUserName = ""; 
/// <summary> 
/// 消息接收方微信号,一般为公众平台账号微信号 
/// </summary> 
public string ToUserName 
{ 
get { return toUserName; } 
set { toUserName = value; } 
} 
 
private string fromUserName = ""; 
/// <summary> 
/// 消息发送方微信号 
/// </summary> 
public string FromUserName 
{ 
get { return fromUserName; } 
set { fromUserName = value; } 
} 
 
private string createTime = ""; 
/// <summary> 
/// 创建时间 
/// </summary> 
public string CreateTime 
{ 
get { return createTime; } 
set { createTime = value; } 
} 
 
private string msgType = ""; 
/// <summary> 
/// 信息类型 地理位置:location,文本消息:text,消息类型:image 
/// </summary> 
public string MsgType 
{ 
get { return msgType; } 
set { msgType = value; } 
} 
 
private string content = ""; 
/// <summary> 
/// 信息内容 
/// </summary> 
public string Content 
{ 
get { return content; } 
set { content = value; } 
} 
 
private string location_X = ""; 
/// <summary> 
/// 地理位置纬度 
/// </summary> 
public string Location_X 
{ 
get { return location_X; } 
set { location_X = value; } 
} 
 
private string location_Y = ""; 
/// <summary> 
/// 地理位置经度 
/// </summary> 
public string Location_Y 
{ 
get { return location_Y; } 
set { location_Y = value; } 
} 
 
private string scale = ""; 
/// <summary> 
/// 地图缩放大小 
/// </summary> 
public string Scale 
{ 
get { return scale; } 
set { scale = value; } 
} 
 
private string label = ""; 
/// <summary> 
/// 地理位置信息 
/// </summary> 
public string Label 
{ 
get { return label; } 
set { label = value; } 
} 
 
private string picUrl = ""; 
/// <summary> 
/// 图片链接,开发者可以用HTTP GET获取 
/// </summary> 
public string PicUrl 
{ 
get { return picUrl; } 
set { picUrl = value; } 
} 
} 
#endregion

By reading this article, everyone will have a rough idea of ​​how .net implements the development of the WeChat public account interface. I hope this article will be helpful to everyone's learning.

The above is the detailed content of Detailed explanation of asp.net implementation of WeChat public account interface development method. For more information, please follow other related articles on the PHP Chinese website!

Statement
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn
How to use char array in C languageHow to use char array in C languageApr 03, 2025 pm 03:24 PM

The char array stores character sequences in C language and is declared as char array_name[size]. The access element is passed through the subscript operator, and the element ends with the null terminator '\0', which represents the end point of the string. The C language provides a variety of string manipulation functions, such as strlen(), strcpy(), strcat() and strcmp().

How to use various symbols in C languageHow to use various symbols in C languageApr 03, 2025 pm 04:48 PM

The usage methods of symbols in C language cover arithmetic, assignment, conditions, logic, bit operators, etc. Arithmetic operators are used for basic mathematical operations, assignment operators are used for assignment and addition, subtraction, multiplication and division assignment, condition operators are used for different operations according to conditions, logical operators are used for logical operations, bit operators are used for bit-level operations, and special constants are used to represent null pointers, end-of-file markers, and non-numeric values.

What is the role of char in C stringsWhat is the role of char in C stringsApr 03, 2025 pm 03:15 PM

In C, the char type is used in strings: 1. Store a single character; 2. Use an array to represent a string and end with a null terminator; 3. Operate through a string operation function; 4. Read or output a string from the keyboard.

.NET Deep Dive: Mastering Asynchronous Programming, LINQ, and EF Core.NET Deep Dive: Mastering Asynchronous Programming, LINQ, and EF CoreMar 31, 2025 pm 04:07 PM

The core concepts of .NET asynchronous programming, LINQ and EFCore are: 1. Asynchronous programming improves application responsiveness through async and await; 2. LINQ simplifies data query through unified syntax; 3. EFCore simplifies database operations through ORM.

How to handle special characters in C languageHow to handle special characters in C languageApr 03, 2025 pm 03:18 PM

In C language, special characters are processed through escape sequences, such as: \n represents line breaks. \t means tab character. Use escape sequences or character constants to represent special characters, such as char c = '\n'. Note that the backslash needs to be escaped twice. Different platforms and compilers may have different escape sequences, please consult the documentation.

Avoid errors caused by default in C switch statementsAvoid errors caused by default in C switch statementsApr 03, 2025 pm 03:45 PM

A strategy to avoid errors caused by default in C switch statements: use enums instead of constants, limiting the value of the case statement to a valid member of the enum. Use fallthrough in the last case statement to let the program continue to execute the following code. For switch statements without fallthrough, always add a default statement for error handling or provide default behavior.

What is the function of C language sum?What is the function of C language sum?Apr 03, 2025 pm 02:21 PM

There is no built-in sum function in C language, so it needs to be written by yourself. Sum can be achieved by traversing the array and accumulating elements: Loop version: Sum is calculated using for loop and array length. Pointer version: Use pointers to point to array elements, and efficient summing is achieved through self-increment pointers. Dynamically allocate array version: Dynamically allocate arrays and manage memory yourself, ensuring that allocated memory is freed to prevent memory leaks.

How to convert char in C languageHow to convert char in C languageApr 03, 2025 pm 03:21 PM

In C language, char type conversion can be directly converted to another type by: casting: using casting characters. Automatic type conversion: When one type of data can accommodate another type of value, the compiler automatically converts it.

See all articles

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

Hot Tools

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

WebStorm Mac version

WebStorm Mac version

Useful JavaScript development tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

MinGW - Minimalist GNU for Windows

MinGW - Minimalist GNU for Windows

This project is in the process of being migrated to osdn.net/projects/mingw, you can continue to follow us there. MinGW: A native Windows port of the GNU Compiler Collection (GCC), freely distributable import libraries and header files for building native Windows applications; includes extensions to the MSVC runtime to support C99 functionality. All MinGW software can run on 64-bit Windows platforms.

Atom editor mac version download

Atom editor mac version download

The most popular open source editor