91超碰碰碰碰久久久久久综合_超碰av人澡人澡人澡人澡人掠_国产黄大片在线观看画质优化_txt小说免费全本

溫馨提示×

溫馨提示×

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

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

如何自定義菜單能夠幫助公眾號豐富界面

發布時間:2021-10-18 11:27:09 來源:億速云 閱讀:136 作者:iii 欄目:web開發

本篇內容介紹了“如何自定義菜單能夠幫助公眾號豐富界面”的有關知識,在實際案例的操作過程中,不少人都會遇到這樣的困境,接下來就讓小編帶領大家學習一下如何處理這些情況吧!希望大家仔細閱讀,能夠學有所成!

 

概述

自定義菜單能夠幫助公眾號豐富界面,讓用戶更好更快地理解公眾號的功能。

文檔定義

接口調用請求說明

http請求方式:POST(請使用https協議)  https://api.weixin.qq.com/cgi-bin/menu/create?access_token=ACCESS_TOKEN

click和view的請求示例

{      "button":[      {             "type":"click",           "name":"今日歌曲",           "key":"V1001_TODAY_MUSIC"       },       {            "name":"菜單",            "sub_button":[            {                  "type":"view",                "name":"搜索",                "url":"http://www.soso.com/"             },             {                  "type":"miniprogram",                  "name":"wxa",                  "url":"http://mp.weixin.qq.com",                  "appid":"wx286b93c14bbf93aa",                  "pagepath":"pages/lunar/index"              },             {                "type":"click",                "name":"贊一下我們",                "key":"V1001_GOOD"             }]        }]  }

實現方式

1、定義菜單json文檔

{   "button": [      {       "name": "運營提升",       "sub_button": [         {           "type": "view",           "name": "免費試用",           "url": "https://acc.bqool.cn/freetrial"         },         {           "type": "view",           "name": "新 AI調價",           "url": "https://www.bqool.cn/products/repricing-central/"         },         {           "type": "view",           "name": "熱 賣家酷",           "url": "https://www.bqool.cn/bigcentral/"         },          {           "type": "view",           "name": "熱 選品酷",           "url": "https://www.bqool.cn/products/chrome-extension/"         },         {           "type": "view",           "name": "更多產品..",           "url": "https://www.bqool.cn/"         }       ]     },     {       "name": "酷仔部落",       "sub_button": [         {           "type": "view",           "name": "限時福利",           "url": "https://mp.weixin.qq.com/mp/video?__biz=MzIzMjc1NTY3MQ==&mid=100007240&sn=04973c15f924fc78a78fec50cd75d706&vid=wxv_1500216251938308102&idx=1&vidsn=a27a0d1d9503802f9f9095534d4d2507&fromid=1&xtrack=1&scene=0&subscene=10000&clicktime=1600054770&enterid=1600054770#wechat_redirect"         },         {           "type": "view",           "name": "成功案例",           "url": "https://www.bqool.cn/user-stories/"         },         {           "type": "view",           "name": "教學視頻",           "url": "https://www.bqool.cn/video-tutorial/"         },         {           "type": "view",           "name": "部落文章",           "url": "https://mp.weixin.qq.com/mp/homepage?__biz=MzIzMjc1NTY3MQ==&hid=1&sn=db4536a338f0e128ce2e5db089f381e1&scene=18"         }        ]     },     {       "name": "權益中心",       "sub_button": [         {           "type": "view",           "name": "簽到抽獎",           "url": "http://u135069.s.24hwpro.com/web/game/game_id/1220189859"         },         {           "type": "view",           "name": "商務合作",           "url": "https://h6.eqxiul.com/ls/EyOfmUXk"         },         {           "type": "view",           "name": "電商服務",           "url": "https://www.bqool.cn/seller-services/"         },         {           "type": "view",           "name": "聯系酷仔",           "url": "https://admin.qidian.qq.com/template/blue/mp/menu/qr-code-jump.html?linkType=0&env=ol&kfuin=2852161981&fid=95&key=71d05b6c5e0a545f0be22ec831f9d7af&cate=1&type=16&ftype=1&_type=wpa&qidian=true"         }       ]     }   ] }

2、讀取json文件

/// <summary>         /// 自定義菜單         /// </summary>         /// <param name="OPENID"></param>         /// <param name="template_id"></param>         /// <returns></returns>         [BQoolException]         [HttpPost]         public ApiResult CustomMenus(string CustomMenusPwd)         {             if (!string.IsNullOrWhiteSpace(CustomMenusPwd) && CustomMenusPwd.Trim() == MvcTools.GetAppSetting("WeixinCustomMenus"))             {                 CustomMenusParam param = new CustomMenusParam() { Account = "sys", UpdateUser = "sys" };                 param.Jsonstr = WeiXinHelper.ReadAccess(HttpRuntime.AppDomainAppPath.ToString() + "/App_Data/WeChat/Custom_Menus.json");                 ApiResult result = _weChatAlertsService.CustomMenus(param, AppId, Appsecret);                 return result;             }             else             {                 return new ApiResult() { Success = false, Code = ApiResultCode.InvalidError, ErrorMessage = ApiResultCode.ErrorMessages[ApiResultCode.InvalidError] };             }         }

3、post提交數據到微信服務器

private static Tuple<WxBaseInfo, string, string> CustomMenus(string AppId, string Appsecret, string jsonstr, bool isResh)         {             var accessToken = TryGetAccessToken(AppId, Appsecret, isResh);             string url = APIConfig.Custom_Menus(accessToken);             string str = APIConfig.CreatePostHttpResponse(url, jsonstr);             _logger.Debug("自定義菜單\r\n" + "輸入:" + url + "\r\n" + jsonstr + "\r\n輸出:" + str);             return new Tuple<WxBaseInfo, string, string>(JsonConvert.DeserializeObject<WxBaseInfo>(str), url, jsonstr);         }
public static string WEIXIN_URL = "https://api.weixin.qq.com/";          public static string Custom_Menus(string token)         {             return String.Format(WEIXIN_URL + "cgi-bin/menu/create?access_token={0}", token);         }

備注:一般情況下,不管是創建或者修改菜單,使用 "cgi-bin/menu/create這個接口即可。

“如何自定義菜單能夠幫助公眾號豐富界面”的內容就介紹到這里了,感謝大家的閱讀。如果想了解更多行業相關的知識可以關注億速云網站,小編將為大家輸出更多高質量的實用文章!

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

上思县| 江永县| 临清市| 延边| 富蕴县| 满洲里市| 准格尔旗| 嘉义县| 镇原县| 桃源县| 湖南省| 固阳县| 吴旗县| 遵义市| 仪征市| 咸阳市| 镶黄旗| 九寨沟县| 克什克腾旗| 岳阳市| 普兰县| 山东省| 广宁县| 荃湾区| 镇赉县| 新津县| 新野县| 岑溪市| 什邡市| 永顺县| 高密市| 丹江口市| 茂名市| 将乐县| 邳州市| 鹰潭市| 涡阳县| 故城县| 普安县| 塔河县| 英吉沙县|