[node.js] 서버에서는 쿠키를 읽는데 브라우저에서는 못 읽는 오류 (cors)

차봉석·2023년 5월 29일
0

errors

목록 보기
1/2
post-custom-banner

react에서 요청할 때

    axios
      .post("http://localhost:8123/users/login", { id, password },{ withCredentials: true })
      .then((res) => {

{withCredentials: true} 옵션을 주니까 브라우저에서도 쿠키를 읽을 수 있었다.



물론 서버에서도

app.use(cors({
  origin: 'http://localhost:3000', // 클라이언트의 도메인을 적어주세요
  credentials: true, // 쿠키를 포함한 요청을 허용합니다.
}));

origin과 credentials 옵션을 다음처럼 설정했었다.

profile
자두과자

0개의 댓글