rawhttp icon indicating copy to clipboard operation
rawhttp copied to clipboard

A Go library for making HTTP requests with complete control

Results 8 rawhttp issues
Sort by recently updated
recently updated
newest added

Sometimes servers complete the TCP handshake but never respond with any actual HTTP data. Currently rawhttp gets stuck when this happens. This pull request adds a timeout to make sure...

Hi @tomnomnom, This issue could be related to https://github.com/tomnomnom/rawhttp/issues/5. I had some timeout problems using your tool so I tried to investigate a bit to fix it. Fixing the timeout...

Hi there, I’m migrating part of my workflow to `meg` and it just occurred to me that the rawHttp library doesn’t handle redirects as of now. Thanks!

Needs a default timeout and a way to override it.

enhancement

The user might not want to read the body at all, so it might be best return an `io.ReadCloser` the same way `net/http` does. That `io.ReadCloser` would be responsible for...

enhancement

Query strings and form data must be written manually at the moment. It would be nice if there was a way to make one from a `map[string]string`.

enhancement

https://en.wikipedia.org/wiki/Chunked_transfer_encoding

enhancement

Should support gzip, deflate etc

enhancement