GetUserInfo
GET
/openapi/user_info请求参数
无
示例代码
返回响应
Success Response(200)
Error Response(200)
HTTP 状态码: 200
内容格式: JSONapplication/json
数据结构
result
integer
必需
错误码。1 表示成功。
user_info
object
用户信息
name
string
用户昵称。
sex
string
必需
性别。"M:男性,“F”:女性,其他:未知。
fan
integer
粉丝数
follow
integer
关注数
head
string
头像地址
bigHead
string
必需
大头像地址(可能为空)
city
string
用户地区名称
示例Success Response
{
"result": 1,
"user_info": {
"name": "xxxx",
"sex": "M",
"fan": 12,
"follow": 17,
"head": "http://xxxx.png",
"bigHead": "http://yyyyy.png",
"city": "河北省石家庄市"
}
}
最后修改时间: 3 年前