POSThttp://api.example.com/user/reg-get-code用户注册时拉取验证码请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| phone | string | 手机号 |
返回结果
{
"code": 0,
"message": "成功获取验证码",
"data": {
"item": []
}
}
POSThttp://api.example.com/user/register请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| phone | string | 手机号 |
| code | string | 验证码 |
| invite_code | string | 邀请码,6位字符 |
| password | string | 密码 |
| source | string | 来源 0:默认 |
返回结果
{
"code": 0,
"message": "注册成功",
"data": {
"item": {
"uid": 89669882,
"username": "13812341234",
"realname": "",
"id_card": "",
"real_verify_status": 0,
"user_sign": null,
"real_pay_pwd_status": 0,
"real_work_status": 0,
"real_contact_status": 0,
"real_zmxy_status": 0,
"real_bind_bank_card_status": 0,
"sessionid": "br293s6i0p63m4i5lqshqh2c02",
"card_list": []
}
}
}
POSThttp://api.example.com/user/login-get-code请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| phone | string | 手机号 |
返回结果
{
"code": 0,
"message": "成功获取验证码",
"data": {
"item": []
}
}
POSThttp://api.example.com/user/login请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| username | string | 用户名,手机注册的为手机号 |
| code | string | 短信验证码 |
| source | string | 来源 0:默认 |
| deviceId | string | 设备id |
返回结果
{
"code": 0,
"message": "登录成功",
"data": {
"item": {
"uid": 89669882,
"username": "13812341234",
"realname": "",
"status": 1
}
}
}
POSThttp://api.example.com/user/quick-login请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| SESSIONID | string | session id |
返回结果
{
"code": 0,
"message": "登录成功",
"data": {
"item": {
"uid": 89669882,
"username": "13812341234",
"realname": "",
"status": 1
}
}
}
GEThttp://api.example.com/user/logout{
"code": 0,
"message": "成功退出",
"data": {
"result": true
}
}
POSThttp://api.example.com/user/change-pwd请求参数
| 名称 | 类型 | 注释 |
|---|---|---|
| old_pwd | string | 原密码 |
| new_pwd | string | 新密码 |
返回结果
{
"code": 0,
"message": "修改成功",
"data": {
"item": true
}
}