일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |
Tags
- SSR
- 이분 검색
- TS
- ESlint
- recoil
- webpack
- Cypress
- CI/CD
- dfs
- 인터섹션
- app router
- autosize
- Jest
- 타입 좁히기
- CORS
- 리터럴 타입
- 결정 알고리즘
- 무한 스크롤
- React
- 반공변성
- useAppDispatch
- RTK Query
- 호이스팅
- Promise
- 태그된 유니온
- tailwind
- async/await
- map
- 투포인터
- 공변성
Archives
- Today
- Total
짧은코딩
X-Requested-With 본문
반응형
X-Requested-With
프로젝트 중에 로그인 axios를 했는데 실행이 되지 않았다.
백엔드 요청에 X-Requested-With 헤더가 포함되어 있었다. X-Requested-With 헤더는 해당 요청이 Ajax라는 것을 의미한다. 저렇게 백엔드 요청을 보고 있는 헤더는 추가해줘야 된다.
그리고 X-Requested-With를 쓰는 다른 이유는 CORS를 통해 서버 동의 없이 Ajax 요청을 할 수 없기에 CSRF 공격을 방지할 수 있다. 즉 보안을 강화시켜준다.
적용
const headers = {
"X-Requested-With": "XMLHttpRequest",
};
먼저 이렇게 headers 안에 헤더를 만들어 놓는다.
axios
.post(
"https://waycabvav.shop/login",
{
loginId: id,
password: password,
},
{ withCredentials: true, headers }
)
그리고 요청할 때 이런식으로 추가하면 된다.
반응형
'리액트' 카테고리의 다른 글
react-router 5버전에서 뒤로가기 버튼 만들기(useHistory) (0) | 2022.09.11 |
---|---|
react-cookie (0) | 2022.09.04 |
form 안에서 sumbit이 아닌 버튼이 요청이 갈 때 해결법 (0) | 2022.09.02 |
Property 'checkIdModal' does not exist on type 'JSX.IntrinsicElements'. 해결법 (0) | 2022.09.01 |
슬라이드 만들기 (0) | 2022.08.31 |
Comments