-
Notifications
You must be signed in to change notification settings - Fork 0
API 명세서_Authorization API
Yeon Sang Shin edited this page Jan 9, 2021
·
12 revisions
메소드 | 경로 | 설명 | 구현 여부 |
---|---|---|---|
POST | ~/auth/login |
로그인 |
- 앱을 실행할 때 로그인을 진행한다 (uuid 이용하여)
메소드 | 경로 | 설명 |
---|---|---|
POST | ~/auth/login |
로그인 |
Name | Type | Description | Mandatory |
---|---|---|---|
Content-Type |
string | 반환받을 타입 | Y |
Content-Type: application/json
Name | Type | Description | Mandatory |
---|---|---|---|
uuid |
string | 기기 고유 식별자 | Y |
- 예시
{
"uuid": "xxxxxx"
}
{
"user": {
"id": 0,
"nickname": "홍길동",
},
"token": "12345667890",
"message": "로그인 성공"
}
Type | Name | Description |
---|---|---|
User | user | 유저 정보 |
- int | id | 유저 id |
- string | nickname | 유저 닉네임 |
string | token | 서비스 토큰 |
string | message | 상태 메시지 |
- status code 401으로 줄 것임(유저 정보 없음).