728x90
post 방식으로 포스트맨 이용해서 flask 웹서버에 쿼리를 날리고 있었다.
그런데 자꾸 이런 에러가 뜨는 상황
문제점
문제는 내가 postman이란 프로그램을 처음 사용해봐서 생기는 것 같았다.
Did not attempt to load JSON data because the request Content-Type was not 'application/json'.
the request Content-Type was not 'application/json'.로 보아 날려주는 내용이 json 형태가 아님을 확인
해결책
postman 관련 검색을 통해 해결할 수 있었다.
이런식으로 POST 방식을 선택하고, Body를 누른뒤 raw부분으로 json 데이터 형식으로 데이터를 전송해주면 된다. 간단하다!
https://learning.postman.com/docs/sending-requests/requests/
'hacking or software engineering skills > etc' 카테고리의 다른 글
[flask] module 'jwt' has no attribute 'encode' (0) | 2022.07.17 |
---|---|
[aws, gcp] aws에서 flask 웹서버 배포하기 (2) | 2022.07.16 |
[error handling] ImportError: cannot import name 'compare_ssim' from 'skimage.measure' 에러 해결 방법 (0) | 2021.08.24 |
optical flow란? (0) | 2021.08.15 |
RuntimeError: cuDNN error: CUDNN_STATUS_NOT_SUPPORTED. This error may appear if you passed in a non-contiguous input 에러 해결법 (0) | 2021.07.14 |