Ben
Ben
Not sure what versions you are using, I expected a `MethodError` error here, but I think the solution is the same. `sslconfig` is a keyword arg, not a positional one....
Ah, now that error makes a lot more sense. I tried reproducing this with those version, but was unable to do so. How did you send a request to the...
The method signature for `HTTP.Response` with body and headers is `Response(status, headers, body)` not `Response(status, body, headers)`. Switching around `response_body` and `headers` in the first example works as expected for...