attohttpc icon indicating copy to clipboard operation
attohttpc copied to clipboard

Rust lightweight HTTP 1.1 client

Results 18 attohttpc issues
Sort by recently updated
recently updated
newest added

I think it's better to have support of `ALL_PROXY` belongs to `HTTP_PROXY`, `HTTPS_PROXY` and `NO_PROXY`. Thanks.

At the moment when using the tls-rust back end it's checking that every host is a valid DNS, but IP addresses are not valid DNS names and thus it fails...

We're trying to convert our code in lemmy to use attohttpc, (we were using isahc previously), but when doing a lot of concurrent attohttpc gets and posts (in actix threads),...

On some websites, e.g. http://tfd.org.tw, attohttpc fails with the following error: > InvalidResponse: invalid status code Firefox and curl work fine. 15 websites out of the top million from [Feb...

On some websites, e.g. http://finprison.net, attohttpc fails with the following error: > Io Error: unexpected end of file Curl also behaves weirdly for this particular website, but Firefox works fine,...

When querying some websites, such as http://amvnews.ru/, attohttpc fails with the following error: > Io Error: invalid gzip header 21 websites out of the top million from [Feb 3 Tranco...

Some websites, such as `hajime.us`, fail to load using attohttpc: `Io Error: corrupt deflate stream`. They load fine using Firefox and the curl command-line tool. Tested using [this code](https://github.com/Shnatsel/rust-http-clients-smoke-test/blob/main/attohttpc-smoke-test/src/main.rs). Test...

https://stackoverflow.com/a/61417700/576488

Hi. Do you have plans to allow to specify certificates (`.pem`, `.pfx`, `.p12` etc.) for client authentication? I did a small change in file `streams.rs` ([line 51](https://github.com/sbstp/attohttpc/blob/73d650b35e615847f61c26a30114eb70429e1f97/src/streams.rs#L51)) just to test...