Sending data via request header vs sending data via request body
It is usually a good idea to use the headers for metadata and the body for the data that is used by the business logic. Some points to consider: 1) If the data is sent via HTTP instead of HTTPS, the proxy servers can modify the headers. 2) If you are using the REST protocol … Read more