Public
Documentation Settings

SpringToy

SpringToy API 명세서입니다.

Spring + Redis + S3 + 이메일 인증 + Docker + CI/CD 활용

거의 모든 API는 토큰이 있어야 합니다.

자세한 개발 과정은 아래 주소로 참고할 수 있습니다.

https://hdbstn3055.tistory.com/

깃허브
https://github.com/HanYoonSoo/Spring-Toy-Project

Auth

Auth 관련된 API 명세로 로그인/로그아웃/회원가입/리프레시 토큰 재발급/을 할 수 있습니다.

POSTSpringToy login

http://localhost:8080/auth/login

로그인 API 예시

Bodyraw (json)
json
{
    "email" : "hdbstn3055@gmail.com",
    "password" : "1234"
}

PATCHSpringToy logout

http://localhost:8080/auth/logout

로그아웃 API 예시

Loading