http-useragent icon indicating copy to clipboard operation
http-useragent copied to clipboard

Web user agent class for Perl 6.

Results 42 http-useragent issues
Sort by recently updated
recently updated
newest added

It would be useful for large binary payloads and essential for streaming type applications to support "chunked" transfer-encoded PUT and POST requests. For the streaming case a good pattern would...

enhancement

There are occasional mumblings about the Cookie handling, this is just to cover it off and for anyone who has a specific defect to make a failing test case or...

Maybe it could be useful to move all the HTTP class to another module to make them usable to other http modules related, probably improving their qualities over time.

Hi, Perl 5's LWP::UserAgent has an add_handler()/remove_handler() methods that allow you to specify a sub-routine that will be run (with the request or response object as arguments,) at various phases...

``` $ perl6-m -Ilib t/08-ua.t 1..9 ok 1 - new 1/3 ok 2 - new 2/3 ok 3 - new 3/3 Failed to connect: host is unreachable in method request...

Hi, It would be nice to have something similar to [lwpcook](https://metacpan.org/pod/distribution/libwww-perl/lwpcook.pod) if only if it heads off people complaining of not being able to do things that they think should...

In #95 @moritz suggested > Another idea would be to throw an exception when accessing the contents of a request with 4\* or 5 status without checking the status code...

HTTP::UserAgent should have timeout feature.

HTTP::Request automatically sets http header 'Host' from uri host in https://github.com/sergot/http-useragent/blob/master/lib/HTTP/Request.pm6#L33 But there may be a case where uri host is not the same as http header 'Host', eg, reverse...

e.g. ``` lives-ok { $res = $ua.get('http://httpbin.org/status/404') }, "no exception - expect 404"; ``` from t/\*82\* - I just had a lengthy zef install fail because this test returned a...