rester-sublime-http-client
rester-sublime-http-client copied to clipboard
Headers separated by blank line from METHOD and URI are sent in the body
POST http://requestb.in/16gbesa1
Content-Type: text/plain
test string
versus
POST http://requestb.in/16gbesa1 Content-Type: text/plain
test string
produce different results, see http://requestb.in/16gbesa1?inspect
The documentation in README.md suggests that headers should be separated by a blank line from METHOD and URI.
I'll revise the README to fix error and add clarity. The expected behavior is that anything up to the first empty line is the the request line and headers; everything after is the request body.
Cool, thx!