- BIT101 API总览
- 用户模块
- 上传模块
- 交互反馈模块
- 文章模块
- 教务模块
- 课程模块
- 变量模块
- 消息模块
- 话廊模块
- 治理模块
- 学校教务接口
- 订阅模块
获取用户信息
开发中
GET
/user/info/{id}
请求参数
Path 参数
id
string
必需
示例值:
0
Header 参数
fake-cookie
string
可选
示例值:
{{fake_cookie}}
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'https://bit101.flwfdd.xyz/user/info/0' \
--header 'fake-cookie: {{fake_cookie}}'
返回响应
🟢200成功
application/json
Body
user
object (用户)
必需
id
integer
必需
create_time
string
注册时间
nickname
string
昵称
avatar
object (图片)
头像链接
motto
string
格言/简介
identity
object
身份
following_num
integer
关注数量
follower_num
integer
粉丝数量
following
boolean
是否被我关注
follower
boolean
是否关注我
own
boolean
是否是自己
示例
{
"user": {
"id": 0,
"create_time": "string",
"nickname": "string",
"avatar": {
"mid": "string",
"url": "string",
"low_url": "string"
},
"motto": "string",
"identity": {
"id": 0,
"color": "string",
"text": "string"
}
},
"following_num": 0,
"follower_num": 0,
"following": true,
"follower": true,
"own": true
}
🟠404记录不存在
🟠400参数不正确
🔴500服务器错误
🟠401身份验证失败
修改于 2023-10-20 03:43:44