HTTPie and Print HTTP Request
HTTPie is a command-line utility for making HTTP requests with more straightforward syntax(controversial, I agree). The interesting feature is --offline flag which prints HTTP raw request text. The client sends the HTTP request to the server, and the server responds to the request. It’s an alternate to curl.
HTTP Syntax HTTP Flow and syntrax from Wikipedia.
A client sends request messages to the server, which consist of
a request line, consisting of the case-sensitive request method, a space, the request target, another space, the protocol version, a carriage return, and a line feed (e.
[Read More]