-
Notifications
You must be signed in to change notification settings - Fork 2
1.3. 유저 정보 조회
Soomin edited this page Jan 1, 2020
·
4 revisions
영우
메소드 | 경로 | 설명 |
---|---|---|
GET | /auth/user | 유저 정보 조회 |
Content-Type: application/json
token: "개인 token 값"
유저 정보 조회 성공시
{
"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": "서버 내부 오류"
}