-
Notifications
You must be signed in to change notification settings - Fork 3
회원가입
famer9716 edited this page Jul 17, 2020
·
8 revisions
| 메소드 | 경로 | 설명 |
|---|---|---|
| POST | /user/register | 회원가입 |
{
"Content-Type" : "application/json"
}{
"id" : "test",
"nickname" : "test",
"password" : "test",
"gender" : 1,
"level" : 2,
"log_visibility" : true,
"image" : 5
}- id : 회원가입할 id
- nickname : 사용할 nickname
- password : 회원가입할 password
- gender : (1 : 남자, 2 : 여자)
- level : (1 : 초급, 2 : 중급 : 3, 고급)
- log_visibility : 프로필 공개 여부
- image : 이모지 image flag
👍 success
{
"status" : 200,
"success" : true,
"message" : "register success",
"result" : {
"token":"eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJlbWFpbCI6ImFrc2d1cmFrc2d1ciIsIm5pY2tuYW1lIjoiY
WtzZ3VyYWtzZ3VyIiwiaWF0IjoxNTE0ODA5NDUwLCJleHAiOjE1MTQ4NDU0NTB9.2tBzEWUZLe6addZGUI2MppXcRXDVD43LyIqYVnyQM6I"
}
}👎 fail
{
"status": 400,
"success" : false,
"message": "아이디가 존재합니다.",
"description": "Exist ID"
}{
"status": 400,
"success" : false,
"message": "닉네임이 존재합니다.",
"description": "Exist nickname"
}