标签:_id res icon password 其他属性 修改时间 word 返回 comment
4.用户管理接口老师可以自己注册,也可以有后台管理添加。
注册时只需要提供姓名、手机号、密码即可。注册完成后可以在个人中心修改自己的详细信息。
请求
/users/addpubs
参数
name 【必选】姓名,2~64个字符
phone 【必选】手机号
password 【必选】 登录密码
email 邮件
sex 性别
1: 男
2: 女
icon 头像
address 地址 , 限512个字符。
comment 备注,用于管理时书写备注,用户自己不能修改
maintext 介绍,详细介绍,可以是html内容。
响应
{
"code": 0,
"err_desc": "6"
}
学生自己注册。
注册时只需要提供姓名、手机号、密码即可。注册完成后可以在个人中心修改自己的详细信息。
请求
/users/addstus
参数
同添加老师。
根据id查询学生、老师或管理员信息。
请求
/users/get?id=6
参数
id 用户编号
响应
{
"code": 0,
"data": {
"count": 1,
"items": [
{
"id": "7",
"user_from": "zc",
"outer_id": null,
"phone": "13888888888",
"email": null,
"password": null,
"name": "王建",
"sex": null,
"icon": null,
"qq": null,
"address": null,
"comment": null,
"maintext": null,
"status": "1",
"add_time": "2018-06-15 11:08:27",
"update_time": "2018-06-15 11:08:27"
}
]
}
}
user_from 用户来源
outer_id 第三方用户编号
name
phone
email
password 系统不会返回用户密码,会返回null
sex
icon
address
comment
maintext
status 状态,1 正常 2 禁用 3 删除
add_time 添加时间
update_time 最后修改时间
请求
/users/edit
参数
id 【必选】用户编号
可以修改的属性,其他属性不能修改:
name
email
icon
address
comment
maintext
响应
{
"code": 0
}
标签:_id res icon password 其他属性 修改时间 word 返回 comment
原文地址:http://blog.51cto.com/livestreaming/2129751