Skip to content

팔로잉조회

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
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "message": "서버 내부 에러",
    "data": null
}
Clone this wiki locally