격리 풀리면 좀 더 활용하기 쉽도록 정리할 내용

<front>\signup

post(

id, password, class, name, authority, position, div, br, bn, co, etc

) to <back>/signup

then back response

success : res.status(200)

failure : res.status(406).json({ message : “잘못된 회원 정보입니다” })

<front>/signin

post (id, pwd) to <back>/signin

then back response

res.json({

code:200,

message: ”로그인 성공! 토큰 발행“,

token

});