카카오톡 로그인

문제상황펫시터 웹사이트를 구현하며 카카오톡 로그인을 넣기로 했다. 그러나 우리의 프로젝트는 res.session에 있는 user 값을 res.locals에 저장해, 유저의 로그인 유무를 판단했다. login = async (req, res, next) => { try { const { email, password } = req.body; if (!email || !password) { throw new customError( 400, "Bad Request", "아이디 / 비밀번호를 입력해주세요." ); } const responseFromService = await this.authSer..
전호영
'카카오톡 로그인' 태그의 글 목록