toolbox
| toolbox | services | architecture | finance | payments | identity | xml | klogs | perl | fun | books |

daily link  Wednesday, April 17, 2002

Google Web API: "The Google Web APIs service is a beta web program that enables developers to easily find and manipulate information on the web."

A simple Perl code that uses Google Web API:

# --->>> cut here <<<---
use SOAP::Lite;
my $key = '0'; # <<< put your key here
my $query = shift || 'soap';
my $google = SOAP::Lite->service('http://api.google.com/GoogleSearch.wsdl');
my $result = $google->doGoogleSearch($key,$query,0,10,'false','','false','','latin1','latin1');
die $google->call->faultstring if $google->call->fault;
print "About $result->{'estimatedTotalResultsCount'} results.\n";
# --->>> cut here <<<---
Other Google API implementations.
permalink Posted to services @ 10:25:39 AM ( comments)

Tools I install first on my Windows box: FAR, RAR, Perl, and Radio.
permalink Posted @ 10:12:30 AM ( comments)

New version of SOAP::Lite that fixes security flaw has been shipped.
permalink Posted to services @ 10:03:38 AM ( comments)


Copyright (C) 2002 Paul Kulchenko Click here to send an email to the editor of this weblog. Updated 8/22/2002; 5:23:33 PM