Skip to content

API 명세서_Authorization API

Yeon Sang Shin edited this page Jan 9, 2021 · 12 revisions

Authorization API

메소드 경로 설명 구현 여부
#ffa500 POST ~/auth/login 로그인

Login

  • 앱을 실행할 때 로그인을 진행한다 (uuid 이용하여)
메소드 경로 설명
#ffa500 POST ~/auth/login 로그인

Header

Name Type Description Mandatory
Content-Type string 반환받을 타입 Y
Content-Type: application/json

Body

Name Type Description Mandatory
uuid string 기기 고유 식별자 Y
  • 예시
{
    "uuid": "xxxxxx"
}

uuid에 해당하는 유저가 있을 시 Response Body

{
    "user": {
        "id": 0,
        "nickname": "홍길동",
    },
    "token": "12345667890",
    "message": "로그인 성공"
}
Type Name Description
User user 유저 정보
- int id 유저 id
- string nickname 유저 닉네임
string token 서비스 토큰
string message 상태 메시지

uuid에 해당하는 유저 정보가 없을 시

  • status code 401으로 줄 것임(유저 정보 없음).