Home WeChat Applet WeChat Development WeChat public platform development: Custom menu interface description

WeChat public platform development: Custom menu interface description

Feb 27, 2017 pm 01:18 PM
WeChat

1. Custom menu rules

Custom menus are divided into first-level menus and second-level menus.

The number of first-level menus is 1-3, that is, when you open the public account, you can directly see up to 3 buttons arranged at the bottom. The text of the first-level menu cannot exceed 16 bytes at most (equivalent to 8 Chinese characters).

The second-level menu is subordinate to the first-level menu, and the number is 1-5. The text of the secondary menu cannot exceed 40 bytes (equivalent to 20 Chinese characters).

Regardless of the first-level menu or the second-level menu, there are two trigger events to choose from, namely: click (click, the value cannot exceed 128 bytes) and open the URL (view, the url cannot exceed 256 characters) Festival).

When there is a second-level menu under a first-level menu, no event will occur when the first-level menu button is clicked.

2. Create a menu

Using Senparc.Weixin.MP SDK to create a custom menu is very simple. Just three steps:

Step 1: Get AccessToken

var accessToken = AccessTokenContainer.TryGetToken(appId, appSecret).access_token;
Copy after login

PS: If AppId is used instead of AccessToken in the third step, this step can be omitted.

Step 2: Organize menu content

ButtonGroup bg = new ButtonGroup();

//单击
bg.button.Add(new SingleClickButton()
                    {
                        name = "单击测试",
                        key = "OneClick",
                        type = ButtonType.click.ToString(),//默认已经设为此类型,这里只作为演示
                    });

//二级菜单
var subButton = new SubButton()
                    {
                        name = "二级菜单"
                    };
subButton.sub_button.Add(new SingleClickButton()
                            {
                                key = "SubClickRoot_Text",
                                name = "返回文本"
                            });
subButton.sub_button.Add(new SingleClickButton()
                            {
                                key = "SubClickRoot_News",
                                name = "返回图文"
                            });
subButton.sub_button.Add(new SingleClickButton()
                            {
                                key = "SubClickRoot_Music",
                                name = "返回音乐"
                            });
subButton.sub_button.Add(new SingleViewButton()
                            {
                                url = "http://weixin.senparc.com",
                                name = "Url跳转"
                            });
bg.button.Add(subButton);
Copy after login

Step 3: Submit to WeChat server

var result = CommonApi.CreateMenu(accessToken, bg);
Copy after login

The above SingleClickButton and SingleViewButton correspond to the two menu response methods of click and view respectively. .

3. Menu query

To query the menu, you also need to obtain the AccessToken in the above way, and then only need one line of code:

var result = CommonApi.GetMenu(accessToken);
Copy after login

The structure of the result.menu obtained is similar to the above ButtonGroup bg variable when creating menu.

4. Menu deletion

After obtaining the AccessToken, deleting the menu also only requires one line of code:

var result = CommonApi.DeleteMenu(accessToken);
Copy after login

5. Menu response event

Whether it is click or view, the server will receive different event responses (see "WeChat Public Platform Development: Understanding MessageHandler", which trigger OnEvent_ClickRequest() and OnEvent_ViewRequest() respectively.

The difference is that the client can get the return information after clicking , and after the view receives the request, no matter what information is returned, the client cannot receive it (the URL is opened directly)

6. Custom menu visual editor

Currently Shengpai. The Internet provides free custom menu visual editors in two places, eliminating the need for everyone to run code to operate the menu:

First generation: http://sdk.weixin.senparc.com/ Menu

WeChat public platform development: Custom menu interface description

Second generation: Weiweihi (http://www.weiweihi.com). After registering and adding a WeChat public account, you can get a series of powerful management functions ( The picture below shows the first version of WeiweiHi, which has been updated and can also be found in the left menu of the background)

WeChat public platform development: Custom menu interface description

##More WeChat public platform development: Custom menu interface description. For related articles, please pay attention to PHP Chinese website

Statement of this Website
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

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

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Repo: How To Revive Teammates
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
Hello Kitty Island Adventure: How To Get Giant Seeds
4 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

Can I see visitors in WeChat Moments? Can I see visitors in WeChat Moments? May 06, 2024 pm 01:30 PM

1. WeChat is a social platform that pays attention to privacy protection. Users cannot see who has visited their Moments or personal homepage. 2. This design is intended to protect user privacy and avoid potential harassment or snooping. 3. Users can only see the likes and comments records in their circle of friends, further ensuring the confidentiality of personal information.

There are rumors that 'iPhone 16 may not support WeChat', and Apple's technical consultant in China said that it is communicating with Tencent about app store commissions There are rumors that 'iPhone 16 may not support WeChat', and Apple's technical consultant in China said that it is communicating with Tencent about app store commissions Sep 02, 2024 pm 10:45 PM

Thanks to netizens Qing Qiechensi, HH_KK, Satomi Ishihara and Wu Yanzu of South China for submitting clues! According to news on September 2, there are recent rumors that "iPhone 16 may not support WeChat." In response to this, a reporter from Shell Finance called Apple's official hotline. Apple's technical consultant in China responded that whether iOS systems or Apple devices can continue to use WeChat, and WeChat The issue of whether it can continue to be listed and downloaded on the Apple App Store requires communication and discussion between Apple and Tencent to determine the future situation. Software App Store and WeChat Problem Description Software App Store technical consultant pointed out that developers may need to pay fees to put software on the Apple Store. After reaching a certain number of downloads, Apple will need to pay corresponding fees for subsequent downloads. Apple is actively communicating with Tencent,

How to recover deleted chat history on WeChat How to recover deleted chat history on WeChat May 06, 2024 pm 01:29 PM

1. To recover deleted WeChat chat history, you need to use two mobile phones for data migration. 2. On the old phone, click [Me] → [Settings] → [Chat] → [Chat History Migration and Backup]. 3. Select [Migrate] and set the target device platform. After selecting the chat history to be restored, click [Start]. 4. Then log in to the same account on the new phone and scan the QR code on the old phone to start the migration. 5. After the migration is completed, the deleted chat history will be restored to the new phone.

deepseek image generation tutorial deepseek image generation tutorial Feb 19, 2025 pm 04:15 PM

DeepSeek: A powerful AI image generation tool! DeepSeek itself is not an image generation tool, but its powerful core technology provides underlying support for many AI painting tools. Want to know how to use DeepSeek to generate images indirectly? Please continue reading! Generate images with DeepSeek-based AI tools: The following steps will guide you to use these tools: Launch the AI ​​Painting Tool: Search and open a DeepSeek-based AI Painting Tool (for example, search "Simple AI"). Select the drawing mode: select "AI Drawing" or similar function, and select the image type according to your needs, such as "Anime Avatar", "Landscape"

How to set WeChat background image How to set WeChat background image Apr 26, 2024 am 11:01 AM

1. Open the WeChat app, click [Me] at the bottom of the interface, and select the [Settings] function. 2. Click [Chat], click [Chat Background] to enter the chat background setting interface. 3. Click [Select Background Image] or [Select from Album] or [Take a Photo]. 4. Select and click the picture you want to use, and then click [Use] in the upper right corner.

Is WeChat Lingqiantong safe? Is WeChat Lingqiantong safe? Apr 29, 2024 am 10:23 AM

1. WeChat Lingqiantong adopts a multi-layer security mechanism, including password protection, real-name authentication, mobile phone binding, etc., to ensure the security of user accounts. 2. WeChat Pay uses a variety of encryption methods, including SSL encrypted transmission, real-time monitoring, etc., to ensure transaction security. 3. WeChat Pay also cooperates with banks and financial institutions to implement risk control and prevention measures to monitor and handle abnormal transactions. 4. When using WeChat Lingqiantong, users should also strengthen the protection of personal accounts, set complex passwords, change passwords regularly, and not disclose personal information at will.

How to transfer WeChat chat history to another mobile phone How to transfer WeChat chat history to another mobile phone May 08, 2024 am 11:20 AM

1. On the old device, click "Me" → "Settings" → "Chat" → "Chat History Migration and Backup" → "Migrate". 2. Select the target platform device to be migrated, select the chat records to be migrated, and click "Start". 3. Log in with the same WeChat account on the new device and scan the QR code to start chat record migration.

How to recover chat history after deleting friends on WeChat How to recover chat history after deleting friends on WeChat Apr 29, 2024 am 11:01 AM

1. Open the WeChat app, click [Address Book] at the bottom of the interface, and click [New Friend]. 2. Enter the friend’s WeChat ID or nickname in the search box at the top of the page. 3. If the other party has not deleted the user, the user can find the friend in the search results. 4. Click on the friend to enter the chat window with him or her, and you can view the previous chat history.

See all articles