Skip to content

마이페이지 조회

meanjung edited this page Jan 9, 2021 · 2 revisions

메소드 경로 설명
GET /user/mypage 마이페이지 조회

Image

android_bookstore_recommend

Request Header

{
    "Content-Type": "application/json",
    "token": jwt
}

Response Body

< Success >

{
    "status": 200,
    "success": true,
    "message": "내 정보 가져오기 성공",
    "data": {
        "profileImg": "https://sopt-server-gain.s3.ap-northeast-2.amazonaws.com/1610174855958.jpg",
        "name": "minjeong99",
        "email": "minjeonghong@gmail.com",
        "level": 3,
        "ranking": 1
    }
}

< Fail >

  • EXPIRED TOKEN
{
    "status": 401,
    "success": false,
    "message": "토큰 값이 만료되었습니다."
}
  • EMPTY TOKEN
{
    "status": 401,
    "success": false,
    "message": "토큰 값이 없습니다."
}
  • INVALID TOKEN
{
    "status": 401,
    "success": false,
    "message": "유효하지 않은 토큰값입니다."
}
  • DB 오류
{
    "status": 600,
    "success": false,
    "message": "DB 오류"
}