-
Notifications
You must be signed in to change notification settings - Fork 0
auth
MMyungji edited this page Nov 11, 2019
·
4 revisions
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /signup | 회원가입 |
Content-Type: application/json
{
"email" : "[email protected]",
"password" : "1234",
"name" : "강수자",
"phone" : "010-1234-1234",
"birth" : "1966년 10월 03일",
"address" : "용산구 한강대로 100",
"emergency_phone" : "010-1234-3456",
}
{
"message": "fail"
}
{
"message": "success"
}
메소드 | 경로 | 짧은 설명 |
---|---|---|
POST | /signin | 로그인 |
Content-Type: application/json
{
"email" : "[email protected]",
"password" : "1234"
}
{
"email" : "twice",
"password" : "1234",
"fcm_token" : "fcm토큰값"
}
{
"message": "login success",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjozLCJpYXQiOjE0OTg3MTMxMjIsImV4cCI6MTUwMTMwNTEyMn0.bahoerjlnT8dJXVaqlsGhIgx6hDalLqkuBJee4a2Pto"
}
{
"message": "wrong password"
}
{
"message": "wrong email"
}