多应用+插件架构,代码干净,二开方便,首家独创一键云编译技术,文档视频完善,免费商用码云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格式) ~~~ 输出结果: ~~~ [ { "uid": "9", "uname": "你猜猜T510", "face": "http://www.candy.com/addons/theme/stv1/_static/image/noavatar/middle.jpg", "occupation_id": null, "occupation_name": null, "intro": null, "follow_state": { "following": 0, "follower": 0 }, "follower_count": 0 }, { "uid": "4", "uname": "嚣张1", "face": "http://demo-coutuan123.b0.upaiyun.com/avatar/a8/7f/f6/original.jpg!middle.avatar.jpg?v1409908382", "occupation_id": null, "occupation_name": null, "intro": null, "follow_state": { "following": 0, "follower": 0 }, "follower_count": 0 } ] ~~~ ### 字段说明 ~~~ uid 用户id uname 关注人的昵称 face 头像 occupation_id 职位id occupation_name 职位名称 intro 个人简介 follow_state 数组,关注的状态 Following = 1 是我关注的人,=0则不是 follower"] = 1 是关注我的人,=0则不是 follower_count,粉丝个数 ~~~