发布于 6年前
                [ EasyWechat 4.1 文档 ] 小程序—— 插件管理
申请使用插件
$pluginAppId = 'xxxxxxxxx';
$app->plugin->apply($pluginAppId);删除已添加的插件
$pluginAppId = 'xxxxxxxxx';
$app->plugin->unbind($pluginAppId);查询已添加的插件
$app->plugin->list();获取当前所有插件使用方
$page = 1;
$size = 10;
$app->plugin_dev->getUsers($page, $size);同意插件使用申请
$appId = 'wxxxxxxxxxxxxxx';
$app->plugin_dev->agree($appId);拒绝插件使用申请
$app->plugin_dev->refuse('拒绝理由');删除已拒绝的申请者
$app->plugin_dev->delete(); 
             
             
             
             
            