-
Notifications
You must be signed in to change notification settings - Fork 0
[POST] 회원가입
Say-young edited this page Jul 6, 2020
·
7 revisions
메소드 | 경로 | 설명 |
---|---|---|
POST | .../... | OpenAPI를 이용한 회원가입 |
{
"Content-Type": "application/json"
}
{
"user_name": STRING,
"user_token_google": STRING,
"user_token_kakao": STRING,
"user_img" : STRING
}
- 데이터 타입을 적어두었습니다. 상황에 따라 맞는 값을 보내주시면 됩니다.
- user_name : 사용자 이름
- user_token_google : 구글 token(user_token_kakao에는 NULL 값)
- user_token_kakao : 카카오 token(user_token_google에는 NULL 값)
- user_img : 사용자 프로필 이미지
< Success >
{
"status": 200,
"success": true,
"message": "회원가입 성공"
}
< Fail >
- 데이터 누락
{
"status": 400,
"success": false,
"message": "필요한 값이 없습니다."
}
- 서버 에러
{
"status": 500,
"success": false,
"message": "회원가입 실패"
}