In addition to Weibo, there is also WeChat
Please pay attention
WeChat public account
Shulou
2025-04-05 Update From: SLTechnology News&Howtos shulou NAV: SLTechnology News&Howtos > Development >
Share
Shulou(Shulou.com)06/03 Report--
This article is about how to add menus to the official account of ASP.NET Wechat. The editor thinks it is very practical, so share it with you as a reference and follow the editor to have a look.
The details are as follows
Testjs.aspx Code:
Width: 100%;} public partial class testjs: System.Web.UI.Page {protected void Page_Load (object sender, EventArgs e) {} protected void Button1_Click (object sender, EventArgs e) {MenuOperator mm = new MenuOperator (); lblMsg.Text=mm.menu_add ();} protected void Button2_Click (object sender, EventArgs e) {MenuOperator mm = new MenuOperator (); lblMsg.Text=mm.menu_ del ();}}
MenuOperator.cs menu manipulation helper class
Public class MenuOperator {public string menu_add () {string url = "https://api.weixin.qq.com/cgi-bin/menu/create?access_token="; string token = mainArg.get_Token (); url + = token; HttpWebRequest req = (HttpWebRequest) HttpWebRequest.Create (url); req.Method =" POST "; / / No case limit string menuPath = HttpContext.Current.Server.MapPath (@" ~ / TemplePath/menu.txt "); Stream ms = File.Open (menuPath, FileMode.OpenOrCreate) Byte [] paramb = new byte [ms.Length]; ms.Read (paramb, 0, (Int32) ms.Length); string param = Encoding.Default.GetString (paramb); ms.Close (); using (StreamWriter stream=new StreamWriter (req.GetRequestStream () {stream.Write (param);} using (HttpWebResponse response= (HttpWebResponse) req.GetResponse ()) {Stream s = response.GetResponseStream (); StreamReader sr = new StreamReader (s); string result = sr.ReadToEnd () Sr.Close (); return result;}} public string menu_del () {string token = mainArg.get_Token (); string url = "https://api.weixin.qq.com/cgi-bin/menu/delete?access_token=" + token;; HttpWebRequest req = (HttpWebRequest) HttpWebRequest.Create (url); using (HttpWebResponse response = (HttpWebResponse) req.GetResponse ()) {StreamReader sr = new StreamReader (response.GetResponseStream ()); string result = sr.ReadToEnd () Sr.Close (); return result;}
Menu.txt content:
{"button": [{"type": "click", "name": "Today's song", "key": "V1001_TODAY_MUSIC"}, {"name": "menu", "sub_button": [{"type": "view", "name": "search", "url": "http://www.soso.com/"}, {" type ":" view " "name": "Video", "url": "http://v.qq.com/"}, {" type ":" click "," name ":" praise us "," key ":" V1001_GOOD "}]}
The running result is shown in the figure:
Thank you for reading! This is the end of the article on "how to add menus to the official account of ASP.NET Wechat". I hope the above content can be of some help to you, so that you can learn more knowledge. if you think the article is good, you can share it for more people to see!
Welcome to subscribe "Shulou Technology Information " to get latest news, interesting things and hot topics in the IT industry, and controls the hottest and latest Internet news, technology news and IT industry trends.
Views: 0
*The comments in the above article only represent the author's personal views and do not represent the views and positions of this website. If you have more insights, please feel free to contribute and share.
Continue with the installation of the previous hadoop.First, install zookooper1. Decompress zookoope
"Every 5-10 years, there's a rare product, a really special, very unusual product that's the most un
© 2024 shulou.com SLNews company. All rights reserved.