-
Notifications
You must be signed in to change notification settings - Fork 4
팔로잉조회
Ji Yeon Kim edited this page Jan 5, 2019
·
1 revision
지연
메소드 | 경로 | 짧은 설명 |
---|---|---|
GET | /user/{user_id}/following | user_id가 팔로우한 유저 리스트 조회 |
Content-Type: application/json
Authorization: token
{
"status": 200,
"message": "팔로우/팔로잉 조회 성공",
"data": [
{
"user_id": "first",
"user_name": "change",
"user_phone": null,
"user_img_url": "http://s3.ap-northeast-2.amazonaws.com/project-sopt/f2cc1bd38fe34a60b137a514f6a6b2e9.jpg",
"user_status_comment": null,
"auth": false,
"follow": false
}
]
}
{
"status": 204,
"message": "팔로우/팔로잉을 찾을 수 없습니다.",
"data": null
}
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}