--- lib/Captcha/reCAPTCHA.pm 2011-12-20 16:53:35.000000000 +1300
+++ lib/Captcha/reCAPTCHA.pm 2011-12-20 17:13:07.000000000 +1300
@@ -117,6 +117,7 @@
my ( $url, $args ) = @_;
my $ua = LWP::UserAgent->new();
+ $ua->env_proxy();
return $ua->post( $url, $args );
}
@@ -330,6 +331,12 @@
See the /examples subdirectory for examples of how to call C<check_answer>.
+Note: this method will make an HTTP request to Google to verify the user input.
+If this request must be routed via a proxy in your environment, use the
+standard environment variable to specify the proxy address, e.g.:
+
+ $ENV{http_proxy} = '
http://myproxy:3128';
+
=back
=head1 CONFIGURATION AND ENVIRONMENT