Need raw HTTP response

I’ve been using HTTPoison to fetch data from various servers. Now I have a need to see the response, the entire response, raw before it’s parsed into headers & body. It would be ideal if I could hook into HTTPoison (or HTTPotion) to get the response & change it, then allow the modified response to pass through the parsing into headers & body, but that’s not required.

Honestly, at that point I would just open up a raw TCP connection and just get the dump back. The point of HTTPoison/HTTPotion are the parsing, if you do not need that then not a whole lot needed other than the raw TCP or SSL modules. :slight_smile:

Yeah, that’s what I decided last night. The networking part is trivial anyway. Thanks.