多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云13.8K 广告
### 接口名称 `User/search_by_uname` ### 接口描述 根据关键字搜索用户 ### 请求地址 `http://URL/User/search_by_uname` ### 输入参数 ~~~ (string) oauth_token (必填) (string) oauth_token_secret (必填) (string) key,查询关键词 (int) count,分页显示时,指定每页显示条数(默认20) (int) page,分页显示时,指定获取的页码(默认取第1页) (string) format,返回格式可选 json/php/test格式(默认json格式) ~~~ 输出结果: ~~~ 成功 { "status": 1, "list": [ { "uid": "1", "uname": "你猜猜T", "face": "http://demo-coutuan123.b0.upaiyun.com/avatar/c4/ca/42/original.jpg!middle.avatar.jpg?v1434019465", "occupation_id": "1", "occupation_name": "婚礼策划", "intro": "", "follow_state": { "following": 0, "follower": 0 }, "follower_count": 0 } ] } 失败 { "status": 0, "msg": "请输入关键词" } ~~~ ### 字段说明 ~~~ uid 用户id uname 关注人的昵称 face 头像 occupation_id 职位id occupation_name 职位名称 intro 个人简介 follow_state 数组,关注的状态 Following = 1 是我关注的人,=0则不是 follower"] = 1 是关注我的人,=0则不是 follower_count,粉丝个数 ~~~