코딩쌀롱
2021.6.23(wed)_POST 요청 시 415 에러 본문
request body의 형태가 json일 때,
headers의 Content-Type: application/json
추가해줘야 함!
{
method: 'POST',
headers: {
'Authorization': `bearer ${token}`,
'Content-Type': 'application/json'
}
body: { ... }
}
'회고 > 하루 기록' 카테고리의 다른 글
2021.7.2(fri)_앞으로 할 것 (2) | 2021.07.02 |
---|---|
2021.6.25(thu)_에러 처리 컴포넌트, 스켈레톤 UI (0) | 2021.06.25 |
2021.6.21(mon)_event delegation, bubbling (0) | 2021.06.22 |
2021.6.18(fri)_jwt 디코딩에 관한 고민 (0) | 2021.06.19 |
Comments