HTTP - Axios.post withCreadentials

BigbrotherShin·2020년 5월 19일
0

Frontend

목록 보기
29/31
post-thumbnail

문제상황

회원가입을 하면 자동으로 로그인 되는 기능을 구현하려고 하였는데, 서버와 통신도 정상적으로 되고, Response HeadersSet-Cookie에서 쿠키값을 할당받기도 하였지만 브라우저의 쿠키값은 변하지 않았다. 그래서 새로고침을 하면 로그인이 유지되지 않는 문제점이 있었다.

해결방법

결론적으로는 Response HeadersSet-Cookie가 적용되기 위해서는 withCreadentials: true를 해줘야 했다 !!!!

Axios.post('/register', actionData, { withCreadentials: true });

느낀점: HTTP 공부할 것..

References

profile
JavaScript, Node.js 그리고 React를 배우는

0개의 댓글