## 獲取好友列表
~~~[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
}
~~~