in reply to Re^4: Google Images via CGI
in thread Google Images via CGI
I was going to suggest you use the WebService::Simple->new( debug => 1 ...) option, but it wouldn't have helped. I would switch to WWW::Mechanize (or WWW::Mechanize::Cached), its much better in all respects.$google->add_handler("request_send", sub { shift->dump; return }); $google->add_handler("response_done", sub { shift->dump; return });
|
|---|