김성훈 스프링 프로젝트 API

김성훈·2021년 12월 4일
0

내일배움캠프 TIL

목록 보기
32/44

📌 회원가입, 로그인, 탈퇴 기능

API 설계

기능MethodURLrequestresponse
회원가입 기능Post/signup{username:username, password:password}alert
로그인 기능Post/login{username:username, password:password}alert
닉네임 중복체크 기능Post/check{"username":username}message
회원탈퇴 기능Post/status{"status": true}alert

📌 메인페이지 기능

API 설계

기능MethodURLrequestresponse
공부시작시 check-in 기능Post/user{"isstudying": true}
공부시간 저장 및 check-out 기능Post/time{"study_time":(study_time), "isstudying": false}alert
00시 기준 전날, 당일 공부시간 저장Post/ytime{"study_time":(study_time), "isstudying":false,"yesterday_time":localStorage.getItem("yesterday_study_time")}alert
명언 보여주기 기능Getwise
profile
"한 명이 걷는 천 걸음 보다 천 명이 함께 걷는 한 걸음이 성공의 시작이고 완성이다"

0개의 댓글