-
Notifications
You must be signed in to change notification settings - Fork 1
auth
bghgu edited this page Jun 29, 2017
·
20 revisions
| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /signup/check | 중복확인 |
Content-Type: application/json
{
"email" : "bghgu@naver.com"
}{
"username" : "ds"
}{
"message": "email check success"
}{
"message": "email already exists"
}{
"message": "username check success"
}{
"message": "username already exists"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /signup | 회원가입 |
Content-Type: application/json
{
"email" : "bghgu@naver.com",
"password" : "1234",
"username" : "ds"
}{
"message": "success",
"id": 28
}{
"message": "email already exists"
}{
"message": "username already exists"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| GET | /selectCategory | 카테고리 조회 |
{
"result": [
{
"category_id": 0,
"category_name": "default",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 1,
"category_name": "수필",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 2,
"category_name": "일러스트",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 3,
"category_name": "소설",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 4,
"category_name": "사진",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 5,
"category_name": "디자인",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
},
{
"category_id": 6,
"category_name": "비디오",
"category_like": 0,
"category_image": "https://ektmf1993.s3.ap-northeast-2.amazonaws.com/1495374643112.jpg"
}
]
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /selectCategory | 카테고리 선택 |
Content-Type: application/json
{
"id" : 28,
"categories" : [1, 2, 3, 4, 5]
}{
"id" : 28,
"categories" : [0]
}{
"message": "Signup success"
}{
"message": "Signup fail"
}| 메소드 | 경로 | 짧은 설명 |
|---|---|---|
| POST | /login | 로그인 |
Content-Type: application/json
{
"email" : "bghgu@naver.com",
"password" : "1234"
}{
"message": "login success",
"token": "eyJhbGciOiJIUzI1NiIsInR5cCI6IkpXVCJ9.eyJ1c2VyX2lkIjozLCJpYXQiOjE0OTg3MTMxMjIsImV4cCI6MTUwMTMwNTEyMn0.bahoerjlnT8dJXVaqlsGhIgx6hDalLqkuBJee4a2Pto"
}{
"message": "wrong password"
}{
"message": "wrong email"
}