-
Notifications
You must be signed in to change notification settings - Fork 3
마이페이지
famer9716 edited this page Jul 17, 2020
·
10 revisions
| 메소드 | 경로 | 설명 |
|---|---|---|
| GET | /user/myProfile | 마이페이지 |
{
"Content-Type" : "application/json",
"token" : "발급받은 token"
}👍 success
{
"status": 200,
"success": true,
"message": "my profile",
"result": {
"nickname": "최버디",
"gender": 2,
"level": 3,
"image": 2,
"badge": [
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false,
false
],
"win": 0,
"lose": 0
}
}👎 fail
{
"status": 401,
"success" : false,
"message": "만료된 인증 토큰 입니다.",
"description": "expired token"
}