Greetings,

I've been messing with the Google API today, and while I think I understand 
what's going on,
I'm having a problem understanding how to parse what Google spits out.

For example (and you'll need a Google key for this):

use SOAP::Lite;
my $key='000000000000000000000000';
my $query="foo";
my $googleSearch = SOAP::Lite -> service("file:GoogleSearch.wsdl");
my $result = $googleSearch -> doGoogleSearch($key, $query, 0, 10, "false", 
"", "false", "", "latin1", "latin1");
print "About $result->{'estimatedTotalResultsCount'} results.\n";

This is the little Google sample perl script. I am having a hard time 
understanding where the search results
are ending up, and how I can parse them and make them readable. Further 
complication is I don't know
whether to start looking for this information in the Google API docs, the 
SOAP::Lite docs, or if I've asked something
so danged stupid the answer's not written down anywhere.

Thanks,

Tara


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to