? ??? ?? WeChat ?? ??? ??? ?? ??? ?? .Net ??? ?? ??? ??? ?????. ?? ?? ??? ?? ??? ? ????.
???? ? ?? ??? ??? ??? ???? ????. ??:
?? ?? ??? ??? ??? WeChat?? ??? WeChat? ???? ?? ??? ???? ? ????.
??, WeChat? GPS ?? ?? ??? ???? ?? ??? ?????? ???. ?? ? ??? ???????. ??, ??, ?? ?? ??? ? ??? ??? ??? ???? WeChat? XML ??? ? ?? ??? ????. ??? ????? ?? wxmessage ??? ??? ???? ???. ? ??:
class wxmessage { public string FromUserName { get; set; } public string ToUserName { get; set; } public string MsgType { get; set; } public string EventName { get; set; } public string Content { get; set; } public string Recognition { get; set; } public string MediaId { get; set; } public string EventKey { get; set; } public string Location_X { get; set; } public string Location_Y { get; set; } public string Scale { get; set; } public string Label { get; set; } } 其中Location_X代表緯度,Location_Y代表經(jīng)度,Scale代表縮放比例,Label代表位置的描述 和接受文本,語音消息一下樣,地理信息的MsgType為“l(fā)ocation”,修改一下之前的GetWxMessage()函數(shù)和OnLoad里面的消息處理: 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() == "location") { wx.Location_X = xml.SelectSingleNode("xml").SelectSingleNode("Location_X").InnerText; wx.Location_Y = xml.SelectSingleNode("xml").SelectSingleNode("Location_Y").InnerText; wx.Scale = xml.SelectSingleNode("xml").SelectSingleNode("Scale").InnerText; wx.Label = xml.SelectSingleNode("xml").SelectSingleNode("Label").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; } protected void Page_Load(object sender, EventArgs e) { wxmessage wx = GetWxMessage(); string res = ""; if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe") { string content = ""; if (!wx.EventKey.Contains("qrscene_")) { content = "/:rose歡迎北京永杰友信科技有限公司/:rose\n直接回復(fù)“你好”"; res = sendTextMessage(wx, content); } else { content = "二維碼參數(shù):\n" + wx.EventKey.Replace("qrscene_", ""); res = sendTextMessage(wx, content); } } else if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.ToLower() == "scan") { string str = "二維碼參數(shù):\n" + wx.EventKey; res = sendTextMessage(wx, str); } else if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "CLICK") { if(wx.EventKey=="HELLO") res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺(tái)!"); } else { WriteLog(wx.MsgType); if (wx.MsgType == "text" && wx.Content == "你好") { res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺(tái)!"); } else if (wx.MsgType == "voice") { res = sendTextMessage(wx, wx.Recognition); } else if (wx.MsgType == "location") { res = sendTextMessage(wx, "您發(fā)送的位置是:" + wx.Label + ";緯度是:" + wx.Location_X + ";經(jīng)度是:" + wx.Location_Y + ";縮放比例為:" + wx.Scale); } else { res = sendTextMessage(wx, "你好,未能識(shí)別消息!"); } } Response.Write(res); }??? ?? ??? ?? ??? ?? ? ?? ??? ???? ? ????. ??? ?? ?? ??? ??? ???? ????. ???? ??? ?? ?? ?? ??? ??? ?? ?? ?? ?? ?? ??????? ??? ? ?? ?? ??? ?????.
?? "Near Me"? ??? ??? ???? ? ?? ??? ???? ???. ?, WeChat ?? ???? ??? ?? ??? ?? ??? ????? ???. ??, ???? WeChat? ???? ? WeChat ?? ??? ? ??? ?? ? ??? ?????. ?? ???? ?? ?? ???? ??? ? ?? ??? ???? ???. WeChat? ??? ??? ??? ????(?, ?? ?????? ??? ?) ?? ??? ?? 5??? ???? ?????. ?, ???? ?? ??? ??? ? ????? ?? '?? ? ??? ??'? ??? 5??? ???? ??? ??????. ???? MsgType? "event"?? ???? ???, ?? ?? "???"? ???? ?? ?? EventName(???? ????? ????? ?)? "LOCATION"(???)???.
???? WeChat ??? ?? wxmessage ???? ???? ???.
class wxmessage { public string FromUserName { get; set; } public string ToUserName { get; set; } public string MsgType { get; set; } public string EventName { get; set; } public string Content { get; set; } public string Recognition { get; set; } public string MediaId { get; set; } public string EventKey { get; set; } public string Location_X { get; set; } public string Location_Y { get; set; } public string Scale { get; set; } public string Label { get; set; } public string Latitude { get; set; } public string Longitude { get; set; } public string Precision { get; set; } } 改造一下GetWxMessage()函數(shù)和OnLoad函數(shù): 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; WriteLog("MsgType:"+wx.MsgType); if (wx.MsgType.Trim() == "event") { wx.EventName = xml.SelectSingleNode("xml").SelectSingleNode("Event").InnerText; WriteLog(wx.EventName); if (wx.EventName.ToUpper() == "LOCATION") { wx.Latitude = xml.SelectSingleNode("xml").SelectSingleNode("Latitude").InnerText; wx.Longitude = xml.SelectSingleNode("xml").SelectSingleNode("Longitude").InnerText; wx.Precision = xml.SelectSingleNode("xml").SelectSingleNode("Precision").InnerText; } else { wx.EventKey = xml.SelectSingleNode("xml").SelectSingleNode("EventKey").InnerText; } } if (wx.MsgType.Trim() == "text") { wx.Content = xml.SelectSingleNode("xml").SelectSingleNode("Content").InnerText; } if (wx.MsgType.Trim() == "location") { wx.Location_X = xml.SelectSingleNode("xml").SelectSingleNode("Location_X").InnerText; wx.Location_Y = xml.SelectSingleNode("xml").SelectSingleNode("Location_Y").InnerText; wx.Scale = xml.SelectSingleNode("xml").SelectSingleNode("Scale").InnerText; wx.Label = xml.SelectSingleNode("xml").SelectSingleNode("Label").InnerText; } if (wx.MsgType.Trim() == "voice") { wx.Recognition = xml.SelectSingleNode("xml").SelectSingleNode("Recognition").InnerText; } return wx; }MsgType? ???? ?? ???? ?? ???? ????? ?? EventName? "LOCATION"?? ???? ???. ?? ??? ?? ??? ?? ???? ?? ??? ??? ? ???? ??? ???????. ???? ?? ??? ? ?? ??? ?? ??? ?? Onload ??
protected void Page_Load(object sender, EventArgs e) { wxmessage wx = GetWxMessage(); string res = ""; if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "subscribe") { string content = ""; if (!wx.EventKey.Contains("qrscene_")) { content = "/:rose歡迎北京永杰友信科技有限公司/:rose\n直接回復(fù)“你好”"; res = sendTextMessage(wx, content); } else { content = "二維碼參數(shù):\n" + wx.EventKey.Replace("qrscene_", ""); res = sendTextMessage(wx, content); } } else if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.ToLower() == "scan") { string str = "二維碼參數(shù):\n" + wx.EventKey; res = sendTextMessage(wx, str); } else if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "CLICK") { if(wx.EventKey=="HELLO") res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺(tái)!"); } else if (!string.IsNullOrEmpty(wx.EventName) && wx.EventName.Trim() == "LOCATION") { res = sendTextMessage(wx, "您的位置是經(jīng)度:" + wx.Latitude + ",維度是:" + wx.Longitude+",地理經(jīng)度為:"+wx.Precision); } else { if (wx.MsgType == "text" && wx.Content == "你好") { res = sendTextMessage(wx, "你好,歡迎使用北京永杰友信科技有限公司公共微信平臺(tái)!"); } else if (wx.MsgType == "voice") { res = sendTextMessage(wx, wx.Recognition); } else if (wx.MsgType == "location") { res = sendTextMessage(wx, "您發(fā)送的位置是:" + wx.Label + ";緯度是:" + wx.Location_X + ";經(jīng)度是:" + wx.Location_Y + ";縮放比例為:" + wx.Scale); } else { res = sendTextMessage(wx, "你好,未能識(shí)別消息!"); } } Response.Write(res); }? ?????. ???, ???????. ??? WeChat? ? ? "??? ?? ?? ??"?? ??? WeChat ????? ?????. ?? ?? ? ????? ???? ??? 5??? ????, ??? ???? 5??? ??? ?? ??? ????? ?? ? ? ????.
??? ??? ??, ?? ??? ??? ??? ?????, ??? ???? ???? GPS ??? GPS? ??? ??? ??? ?? ? ??? ????. ???? ???? ???? ?????. GPS? ???? ??? ?? ? ???? ?? ??? ?? ???? ????? ?? ??? ? ????. ??? ??? ??? ?? ???? ??? ?? ? ??? ??? ?? ????. ??? ???? ??? ?????. ?? ??? ??? ?? ??? ??? ??? ????? ??? ??? ??? ?? ?????.
????? ??? ?? ??? ?? ?? ??? ????? ?? ??? ????. ??? ??? ??? ???? ??? ?? ??? ? ? ????. ?? ?? BaiduMap API? ??? ??? ???? ?? ??, ?? ?? ?? ??? ???? ?? ???? ? ? ????. ?? ??? ??? ?? ????? ?? ????????
? ??? .NET? ???? WeChat ?? ???? ???? ?? ??? ?? ??? ?? ??? ??? ?? ?????. ??? ??? PHP ??? ????? ?? ?? ??? ?????!

? AI ??

Undress AI Tool
??? ???? ??

Undresser.AI Undress
???? ?? ??? ??? ?? AI ?? ?

AI Clothes Remover
???? ?? ???? ??? AI ?????.

Clothoff.io
AI ? ???

Video Face Swap
??? ??? AI ?? ?? ??? ???? ?? ???? ??? ?? ????!

?? ??

??? ??

???++7.3.1
???? ?? ?? ?? ???

SublimeText3 ??? ??
??? ??, ???? ?? ????.

???? 13.0.1 ???
??? PHP ?? ?? ??

???? CS6
??? ? ?? ??

SublimeText3 Mac ??
? ??? ?? ?? ?????(SublimeText3)

??? ???? ?? ?? ? ???? ?? ????? ?????. ???? ????? ????? ?? ????? ???? ???? ? ?? ???? ????? ??? ???? ?? ??? ?? ? ????. ???? ????? ??? ??? ???? ??? ???? ??? ???? ? ????. Copy Comics?? ???? ?? ??? ?? ??? ?? ?? ??? ?? ??? ?? ?? ?????, ???? ???? ?? ??? ???, ???? ?? ??? ???? ??? ?? ??? ??? ? ????.

2025 ? ?? ?? ???? ??? ?? ???? ??? ??? ?? ??? ? ??? ???? ????? ?? ??, ?? ?? ? ?? ???? ?? ?? ????? ??? ?? 10 ?? ??? ? AI ?? ????? ?? ?????.

?? ???? ?? ?? ?? ?? ? ?? ?? ??? ? Nice Comics? ????? ?? ??? ?? ??? ?????. ?? ?? ??? ?? ? ??? ?? ???? ??? ???? ?? ??? ???? ??????????. ???? ??? ? ????? ???? ??? ?? ??? ?? NES Comics? ???? ???? ??? ?? ?? ? ??? ???? ??? ?? ??? ?? ? ????. ???? ???? ???? ??? ??? ?? ?????, ?? ??? ??? ?? ???? ?? ??? ??????!

Frogman Comics? ???? ??? ?? ??? ???? ??? ??? ?? ??? ?? ?? ?? ?????? ? ?? ????????. ??? ???? ???? ???? ???? ???? ??? ???? ????? ???? ??? ??? ????. ??? ?? ??? ??? ? ???? ??? ??, ??? ? ?? ???? ???? ??? ????? ??? ??? ??? ????. ?? ??? ???? ???? ?? ???? ??? ?? ? ????. ???? ??? ? ????? ???? ?? ?? ???? ?? ?? ??? ??? ?? ?? ??? ?? ??? ?? ? ? ????.

???, ??? ??? ? ?? ???? ???? ???? ?? ??, ????? ??? ?? ???? ???? ???? ???? ?? ??? ????? ??? ??? ???? ?? ? ??? ??? ??? ??? ???? ??? ?? ? ? ????. ??? ?? ??? ?? ??? ??????? ??? ?? ??? ????? ???? ?????? ??? ? ?? ???? ??? ?? ? ??? ???????.

2025b Anhui? ?? ?? ? ???? ??? ????. https://www.marketwebb.co/zh-cn/join?ref=507720986&type=wenzi; Binance Exchange? ??, ??, ??, ??, ?? ? ????? ? 180 ??? ??? ???? ???? ??? ?? ?? ??????. 600 ?? ?? ?? ??? ???? ? ????? 2 ? 7 ?? ?? ?? ? ???? ???? ????.

Android ?? ?? ???? ?? ??? ?? Huobi/Huobi ?? ?????? ??? ? ????. 1. ????? ????? ?? ??? ??? ? ??????. 2. Huobi/Huobi ?? ? ???? ?? ?? ??????, ????? ???? ?? ? ???? ????? ???? ??? ????? QR ??? ????? AppTresure ? Huawei App Market? ?? ?? ?? ???? ??? ?? ?? ? ?????? ??? ??? ?? ?? ???? ?? ? ????. 3. ???? ? .APK ??? ?? "? ??? ?? ?"?? ??? ????? ????? ?? ??? ??????.

?,??? ??? ????. iPhone ? Android ?? ???? ??? ??? ??? ? ? ??? ?? ??? ????? ?? ??? ???? ??????. ? ??? ? ??? ?????? ??? ??? ? ? ??? ??? ????? ????. ③ ?? ?? ?? ?? ? ??? ???? ? ?? ???? ??? ? ? ??? ?????? ???? ??? ??? ? ????. ?? ????? ?? ?? ???? ? ??/???? ??? ????? ???? ?? ? ?? ??? ?? ?? ???? ???? ?? ?????. ?? ????? ???? "?? ?? ????"? ???? ? ?? ????? ??? ?? ????.
