Skip to content

회원 조회

Bomi Kim edited this page Dec 12, 2018 · 1 revision

회원 조회

메소드 경로 짧은 설명
GET /users/{userIdx} 회원 조회

요청 헤더

Content-Type: application/json
Authorization: token(선택)
  • token이 있으면 마이페이지일 경우 회원 정보 수정 / 회원 탈퇴 가능이 표시됨

    • (Response의 auth: true)
  • token이 없거나, 마이페이지가 아닐경우 회원 정보 수정/ 회원 탈퇴 가능이 표시되지 않음

    • (Response의 auth: false)

응답 바디

회원 조회(마이 페이지 조회)

{
    "status": 200,
    "message": "회원 정보 조회 성공",
    "data": {
        "userIdx": 1,
        "name": "test1",
        "email": [email protected]",
        "profileUrl": "https://s3.ap-northeast-2.amazonaws.com/sopt-23-api-test/5e6b87bb835f4483b6996418335fca6e.jpg",
        "auth": true
    }
}

회원 조회(token이 없거나, 타인의 프로필 조회)

{
    "status": 200,
    "message": "회원 정보 조회 성공",
    "data": {
         "userIdx": 1,
        "name": "test1",
        "email": [email protected]",
        "profileUrl": "https://s3.ap-northeast-2.amazonaws.com/sopt-23-api-test/5e6b87bb835f4483b6996418335fca6e.jpg",
        "auth": false
    }
}

회원 조회 실패

{
    "status": 404,
    "message": "회원을 찾을 수 없습니다",
    "data": null
}

INTERNAL SERVER ERROR

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