-
Notifications
You must be signed in to change notification settings - Fork 0
로그인 (Auth) API
yanggwangseong edited this page Nov 19, 2024
·
7 revisions
Method | Endpoint | Description |
---|---|---|
POST | /sign-in | 사용자 로그인 |
POST | /sign-up | 사용자 회원가입 |
POST | /sign-out | 사용자 로그아웃 |
PUT | /verify-email | 이메일 인증 토큰 검증 및 사용자 활성화 |
Key | Value | Description |
---|---|---|
Content-Type |
application/json |
요청 본문이 JSON 형식임을 지정 |
Authorization |
Basic base64(username:password) |
사용자 인증을 위한 Basic Auth 헤더 (Base64) |
{
"email": "[email protected]",
"password": "test123"
}
Success (200 OK):
{
"accessToken": "jwt-access-token",
"refreshToken": "jwt-refresh-token"
}
Key | Value | Description |
---|---|---|
Content-Type |
application/json |
요청 본문이 JSON 형식임을 지정 |
{
"email": "[email protected]",
"password": "test123"
}
Success (201 Created):
{
"accessToken": "jwt-access-token",
"refreshToken": "jwt-refresh-token"
}
Key | Value | Description |
---|---|---|
Authorization | Bearer jwt-access-token | JWT 인증을 위한 액세스 토큰 |
No request body required
Success (200 OK):
{
"data": true
}
Key | Value | Description |
---|---|---|
Content-Type |
application/json |
요청 본문이 JSON 형식임을 지정 |
{
"email": "[email protected]",
"verificationCode": "123456"
}
Success (200 OK):
{
"data": true
}
아래는 프로젝트 데이터베이스 설계 ERD입니다: