• 自定义菜单
    • 创建菜单
    • 获取菜单
    • 删除菜单

    自定义菜单

    自定义菜单是指为单个应用设置自定义菜单功能,所以在使用时请注意调用正确的应用实例。

    1. $config = [
    2. 'corp_id' => 'xxxxxxxxxxxxxxxxx',
    3. 'secret' => 'xxxxxxxxxx', // 应用的 secret
    4. //...
    5. ];
    6. $app = Factory::work($config);

    创建菜单

    1. $menus = [
    2. 'button' => [
    3. [
    4. 'name' => '首页',
    5. 'type' => 'view',
    6. 'url' => 'https://easywechat.com'
    7. ],
    8. [
    9. 'name' => '关于我们',
    10. 'type' => 'view',
    11. 'url' => 'https://easywechat.com/about'
    12. ],
    13. //...
    14. ],
    15. ];
    16. $app->menu->create($menus);

    获取菜单

    1. $app->menu->get();

    删除菜单

    1. $app->menu->delete();