## 获取好友列表
~~~[api]
post:/im/api/friendRefuse
*app_id#APPID
status#0=所有 1=在线 2=离线,默认0
<<<
success
{
"code": 1,
"message": "查询成功",
"data": {
"list": [{
"id": 1,
"app_id": "9e17e92d8b58a910",
"uid": 1,//用户id
"create_time": "2022-05-29 18:28:36",//首次绑定时间
"online": 1,//1=在线 0=离线
},
{
"id": 2,
"app_id": "9e17e92d8b58a910",
"uid": 2,
"create_time": "2022-05-29 18:28:37",
"online": 1
},
{
"id": 3,
"app_id": "9e17e92d8b58a910",
"uid": 3,
"create_time": "2022-05-29 18:28:39",
"online": 0
}],
"count_all": 3,
"count_online": 2,
"count_no_online": 1
}
}
<<<
error
{
"code": 0,
"message": "错误",
"data": null
}
~~~