HTTP Body와 Request/Response에 대한 정보를 포함하는 곳
HTTP 메서드 방식 (GET, POST, PUT, DELETE ---) 중 무엇을 썼는지, 클라이언트, 브라이저, 접속할 URL 등과 같은 클라이언트 정보를 담는 곳
e.g. Mozilla/5.0(Windows NT 10.0, WOW64, rv:41.0) Gecko/20100101 Firefox/41.0
클라이언트가 요청한 실제 데이터(Content/Message Body)
HTML Code, Image, CSS, StyleSheet, JavaScript
GET 방식에서는 주로 비어있다.
POST에서는 헤더에 따라 단순 텍스트일수도, key value 쌍의 Json일 수도, 파일의 바이너리 코드일 수도 있다.
참고
http://www.cleantutorials.com/html/format-of-http-request-response-header-and-body-with-example
https://mommoo.tistory.com/60