Skip to content

1.3. 유저 정보 조회

Soomin edited this page Jan 1, 2020 · 4 revisions

유저 정보 조회

영우

메소드 경로 설명
GET /auth/user 유저 정보 조회

Request Header

Content-Type: application/json
token: "개인 token 값"

Response Body

유저 정보 조회 성공시

{
    "status": 200,
    "success": true,
    "message": "사용자 조회 성공",
    "data": 
    {
        "name": "강영우",
        "nickname": "펀디토멋쟁이",
        "point": 0
    }
}

토큰이 비어있을 때

{
    "status": 400,
    "success": false,
    "message": "헤더에 토큰이 없음"
}

토큰이 유효기간이 지났을 때

{
    "status": 400,
    "success": false,
    "message": "유효기간이 지난 토큰"
}

토큰이 유효하지 않을 때

{
    "status": 400,
    "success": false,
    "message": "잘못된 토큰"
}

필요한 body 값이 없을 때

{
    "status": 400,
    "success": false,
    "message": "필요한 값이 없습니다."
}

INTERNAL SERVER ERROR

{
    "status": 500,
    "success": false,
    "message": "서버 내부 오류"
}
Clone this wiki locally