Skip to content

회원정보조회

Ji Yeon Kim edited this page Jan 11, 2019 · 5 revisions

회원 정보 조회 (feed 상단)

지연

메소드 경로 짧은 설명
GET /user/{user_id} 회원정보 조회
  • user_id=-1 : 나의 정보 조회

요청 헤더

Content-Type: application/json
Authorization: token

응답 바디

리뷰 상세 조회 성공

{
    "status": 200,
    "message": "회원 정보 조회 성공",
    "data": {
        "user_id": "coco",
        "user_name": "kim",
        "user_img_url": "https://s3.ap-northeast-2.amazonaws.com/project-sopt/commonDefaultimage%403x.png",
        "user_status_comment": "hohoho",
        "review_count": 2,
        "follower_count": 0,
        "following_count": 0,
        "auth": false,
        "follow": true
    }
}
  • auth : true면 나 자신.
  • follow : true면 '팔로잉' / false면 '팔로우'

INTERNAL SERVER ERROR

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