- 用户接口
- 关注分组
- 发帖管理接口
- 分区接口
- 评论接口
- 评论回复接口
- 收藏接口
- 点赞接口
- 搜索及统计相关接口
- ws接口
通过id查询用户信息
测试中
GET
/users/searchbyid
最后修改时间:2022-05-04 08:17:58
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
id
number
可选
示例代码
Shell
JavaScript
Java
Swift
Go
PHP
Python
HTTP
C
C#
Objective-C
Ruby
OCaml
Dart
R
请求示例请求示例
Shell
JavaScript
Java
Swift
curl --location --request GET 'http://cosine.ren:8000/users/searchbyid'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"message": "查询成功",
"result": {
"follows_cnt": 7,
"befollowed_cnt": 2,
"user": {
"id": 1,
"user_name": "admin",
"is_admin": true,
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"is_active": true,
"name": "际总打速构他支",
"city": "朔州市",
"sex": "保密",
"isfollow": false
},
"follows": [
{
"id": 1,
"user_id": 1,
"follow_id": "7",
"follow_name": "Matthew",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-03T17:25:41.000Z",
"updatedAt": "2022-03-03T17:25:41.000Z"
},
{
"id": 2,
"user_id": 1,
"follow_id": "4",
"follow_name": "Donald",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-03T17:25:48.000Z",
"updatedAt": "2022-03-03T17:25:48.000Z"
},
{
"id": 8,
"user_id": 1,
"follow_id": null,
"follow_name": "这后马她类总行",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-03T23:04:21.000Z",
"updatedAt": "2022-03-03T23:04:21.000Z"
},
{
"id": 9,
"user_id": 1,
"follow_id": "3",
"follow_name": "12312",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-03T23:04:44.000Z",
"updatedAt": "2022-03-03T23:04:44.000Z"
},
{
"id": 10,
"user_id": 1,
"follow_id": "1",
"follow_name": "际总打速构他支",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-06T07:51:15.000Z",
"updatedAt": "2022-03-06T07:51:15.000Z"
},
{
"id": 11,
"user_id": 1,
"follow_id": "2",
"follow_name": "cos",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-06T07:53:33.000Z",
"updatedAt": "2022-03-06T07:53:33.000Z"
},
{
"id": 12,
"user_id": 1,
"follow_id": "5",
"follow_name": "Charles",
"follow_pic": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"createdAt": "2022-03-06T07:53:48.000Z",
"updatedAt": "2022-03-06T07:53:48.000Z"
}
],
"befollowed": [
{
"user_id": 1,
"name": "际总打速构他支",
"user_name": "admin",
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97"
},
{
"user_id": 2,
"name": "cos",
"user_name": "cos",
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97"
}
]
}
}
修改于 2022-05-04 08:17:58