tl;dr: 이 에러는 플라스크에서 request body의 데이터에 대해 미리 정의한 key로 접근하는데에 실패하면서 발생하는 에러이다. "The browser (or proxy) sent a request that this server could not understand" Flask를 사용해서 파일 업로드 및 data form을 받는 웹 서버를 구현할 때에 가끔씩 다음과 같은 메세지를 리턴 받는 경우가 발생한다: The browser (or proxy) sent a request that this server could not understand. 서버 로그를 확인해보면 다음과 같은 내용이 있을 것이다: werkzeug.exceptions.BadRequestKeyError: 400 Bad Reque..