-
Notifications
You must be signed in to change notification settings - Fork 4
회원정보조회
Ji Yeon Kim edited this page Jan 11, 2019
·
5 revisions
지연
메소드 | 경로 | 짧은 설명 |
---|---|---|
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면 '팔로우'
{
"status": 500,
"message": "서버 내부 에러",
"data": null
}