- 用户接口
- 关注分组
- 发帖管理接口
- 分区接口
- 评论接口
- 评论回复接口
- 收藏接口
- 点赞接口
- 搜索及统计相关接口
- ws接口
用户名模糊查询接口
GET
/search/byname
最后修改时间:2022-05-04 08:17:58
责任人:未设置
请求参数
Authorization
在 Header 添加参数
Authorization
,其值为在 Bearer 之后拼接 Token示例:
Authorization: Bearer ********************
Query 参数
like_name
string
可选
示例值:
a
示例代码
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/search/byname'
返回响应
🟢200成功
application/json
Body
object {0}
示例
{
"code": 0,
"message": "查询成功",
"result": {
"users": [
{
"id": 1,
"user_name": "admin",
"is_admin": 1,
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"is_active": 1,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-23T14:56:10.000Z",
"updatedAt": "2022-02-28T09:54:10.000Z"
},
{
"id": 4,
"user_name": "Donald",
"is_admin": 0,
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"is_active": 0,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-23T14:56:11.000Z",
"updatedAt": "2022-02-23T14:56:11.000Z"
},
{
"id": 5,
"user_name": "Charles",
"is_admin": 0,
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"is_active": 0,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-23T14:56:11.000Z",
"updatedAt": "2022-02-23T14:56:11.000Z"
},
{
"id": 7,
"user_name": "Matthew",
"is_admin": 0,
"img": "https://www.pickpik.com/bled-slovenia-lake-mountains-mountain-the-fog-97",
"is_active": 0,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-23T14:56:11.000Z",
"updatedAt": "2022-02-23T14:56:11.000Z"
},
{
"id": 12,
"user_name": "{{user_name}}",
"is_admin": 0,
"img": "{{img}}",
"is_active": 0,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-23T15:03:49.000Z",
"updatedAt": "2022-02-23T15:03:49.000Z"
},
{
"id": 16,
"user_name": "yanwenyuan",
"is_admin": 1,
"img": "http://dummyimage.com/400x400",
"is_active": 1,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-26T03:25:21.000Z",
"updatedAt": "2022-02-26T03:25:21.000Z"
},
{
"id": 17,
"user_name": "abcd",
"is_admin": 0,
"img": "",
"is_active": 0,
"name": "",
"city": "",
"sex": "保密",
"createdAt": "2022-02-26T03:41:33.000Z",
"updatedAt": "2022-02-26T03:41:33.000Z"
}
]
}
}
修改于 2022-05-04 08:17:58