Reflexive-Client-HTTP
view release on metacpan or search on metacpan
lib/Reflexive/Client/HTTP.pm view on Meta::CPAN
maintains compatibility with the previous behavior, which was not to follow
redirects at all.
If redirects are followed, a response chain should be built, and can be
accessed through $event->response->previous() or $_->previous() if you use a
callback on L</request>. See L<HTTP::Response> for details here.
=head2 proxy
C<proxy> specifies one or more proxy hosts that requests will be passed
through. If not specified, proxy servers will be taken from the B<HTTP_PROXY>
(or B<http_proxy>) environment variable. No proxying will occur unless
C<proxy> is set or one of the environment variables exists.
The proxy can be specified either as a host and port, or as one or more URLs.
C<proxy> URLs must specify the proxy port, even if it is 80.
proxy => [ "127.0.0.1", 80 ],
proxy => "http://127.0.0.1:80/",
C<proxy> may specify multiple proxies separated by commas.
( run in 1.211 second using v1.01-cache-2.11-cpan-71847e10f99 )