# What is Content Type
+ HTTP Request 에 실어 보내는 데이터(body)의 type의 정보를 표현
+ text타입에는 text/css, text/javascript, text/html, text/plain 등이 있음.
+ File을 실어보낼때는 multipart/formed-data
+ Application 타입으로 application/json, application/x-www-form-urlencode가 있음.
+ Request에 실어 보내는 data의 type에 따라 적절하게 선택
# Application/x-www-form-urlencoded를 사용할 때 body를 encoding 하는 것이 필수인가?
+ W3문서 내용
- application/x-www-form-urlencoded
This is the default content type. Forms submitted with this content type must be encoded as follows: *
+ 주의할 것은 application logic에서 application/x-www-form-urlencoded를 사용할 경우 body 인코딩이 해당 framework 혹은 library에서 자동으로 되는지 확인 후 안되면 추가해야함.