# 会员设置

# 获取会员信息

  • 请求地址:ucenter/get_setting

  • 请求方式:GET

  • 需要授权:是

请求参数

参数 类型 描述
page int 页码

返回结果

// 成功返回
{
    "code": 1, 
    "msg": "ok", 
    "data": {
        "nickname": "demo", 
        "birthday": "1995-01-01", 
        "sex": 0, 
        "avatar": "http://a3.top/static/images/avatar.png"
    }
}
// 失败返回
{
    "msg":"",
    "code":0
}

# 更新会员信息

  • 请求地址:ucenter/setting

  • 请求方式:POST

  • 需要授权:是

请求参数

参数 类型 描述
birthday string 生日
sex string 性别
username string 会员昵称

返回结果

// 成功返回
{
    "code": 1, 
    "msg": "会员资料更新成功", 
    "data": null
}
// 失败返回
{
    "msg":"",
    "code":0
}