dlang-requests icon indicating copy to clipboard operation
dlang-requests copied to clipboard

dlang http client library inspired by python-requests

Results 15 dlang-requests issues
Sort by recently updated
recently updated
newest added

On Windows 10, when starting a program with this library, it crashes with a segmentation fault error. This happens even if you only add library imports.

EndeavourOS/Arch x86_64, requests v2.1.3. When sending a POST with a body, a `Content-Length` header is not automatically added, even when posting a string (which is not chunked and has a...

It has briefly been discussed [here](https://github.com/ikod/dlang-requests/issues/10) a while ago, but I bring back the idea. The thing is that vibe-d is quite big, and I would like to avoid having...

with v2.0.9. Very simple code: ``` auto headers = [ "Content-Type": "application/json" ]; auto rq = Request(); rq.verbosity = 2; rq.addHeaders(headers); auto resp = rq.get(url); ``` if the url has...