企业🤖AI智能体构建引擎,智能编排和调试,一键部署,支持私有化部署方案 广告
[TOC] ### 添加用户 #### URL > web/index.php?c=user&a=create&do=save #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | username | string | 是 | 用户名 | - | | password | string | 是 | 用户密码 | - | | repassword | string | 是 | 再次输入的密码 | - | | remark | string | 否 | 备注信息 | - | | addtype | int | 是 | 添加方式 | 1、自定义权限;2、选择用户组 | | groupid | int | 否 | 选择的用户组ID,添加方式为2时此参数有效,可为空 | - | | uni_groups | array | 否 | 应用权限组,添加方式为1时此参数有效,可为空 | uni_groups[0]=2812&uni_groups[1]=1423&... | | create_account_groups | array | 否 | 账号权限组,添加方式为1时此参数有效,可为空 | create_account_groups[0]=2812&create_account_groups[1]=1423&... | | modules | array | 否 | 附加模块权限,添加方式为1时此参数有效,可为空 | 见下面示例 | | templates | array | 否 | 附加模板权限,添加方式为1时此参数有效,可为空 | templates[0]=2812&templates[1]=1423&... | | create_account_nums | array | 否 | 附加账号权限,添加方式为1时此参数有效,可为空 | 见下面示例 | | timelimit | int | 否 | 附加天数,添加方式为1时此参数有效,可为空 | - | 示例: ``` [modules] => Array ( [0] => Array ( [name] => zxsite_shop [support] => wxapp_support ) [1] => Array ( [name] => we7_diyspecial [support] => account_support ) ) [create_account_nums] => Array ( [maxaccount] => 1 [maxwxapp] => 2 [maxwebapp] => 0 [maxphoneapp] => 0 [maxxzapp] => 0 [maxaliapp] => 0 [maxbaiduapp] => 0 [maxtoutiaoapp] => 0 ) ``` #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "添加成功!" }, "redirect": "", "type": "ajax" } ``` 错误: ``` { "message": { "errno": -1, "message": "增加用户失败,请稍候重试或联系网站管理员解决!" }, "redirect": "", "type": "ajax" } ``` ### 检测用户 #### URL > web/index.php?c=user&a=create&do=check_user_info #### 请求方式 > POST #### 请求参数 | 名称 | 类型 | 必填 | 描述 | 值 | | ----------- | :-----: | :-----: | ----------- | | username | string | 是 | 用户名 | - | | password | string | 否 | 用户密码 | - | | repassword | string | 否 | 再次输入的密码 | - | #### 返回数据 正确: ``` { "message": { "errno": 0, "message": "" }, "redirect": "", "type": "ajax" } ``` 错误: ``` { "message": { "errno": -1, "message": "必须输入密码,且密码长度不得低于8位!" }, "redirect": "", "type": "ajax" } ```