Skip to content

获取用户信息

接口路径

http
/Third/User/getUserInfo

说明

​ 根据您提交的用户id,获取用户昵称、头像

注意

请求方式

​ GET

请求类型

application/x-www-form-urlencoded

请求参数

参数类型必填描述
wuidstring用户id

返回参数说明

参数类型描述
namestring昵称
photostring头像

返回值示例

json
{
  "code": 200,
  "msg": "",
  "data": {
    "name": "xxx",
    "photo": "http://xx.nuoyun.tv/xx.jpeg"
  }
}

可能遇到的问题