[NestJS] 42OAuth 인증하기
흑흑 인증 뒤지게 어렵다ㅠㅠㅠㅠ 인증과 인가의 차이점, OAuth 원리, JWT란 무엇인지, 세션기반/토큰기반 Authorization, passport 등등에 대하여 공부하고나서, NestJS 공식문서의 Authentication 튜토리얼을 쭉 따라가면 다음과 같은 결과물이 나온다. users.service에 다음과 같이 user 정보를 넣어두고 private readonly users = [ { userId: 1, username: 'john', password: 'changeme', }, { userId: 2, username: 'maria', password: 'guess', }, ]; /auth/login 경로에 POST 로 id, pw를 넘기면 LocalStrategy에 의해 id/pw 검사가..
공부기록/42 Seoul
2021. 8. 1.