Hi all. I'm new to this and I've probably made some elementary error, so please bear with me :)
I want to read a wordlist from a text file and pass each word as a query to
Google API. If the query returns more than 100 hits, then I want to write that word to a new file.
The relevant code snippet is:
foreach (<FH>) {
chomp;
my $googleSearch = SOAP::Lite -> service("file:GoogleSearch.wsdl")
+;
my $result = $googleSearch -> doGoogleSearch($key, $_, 0, 10, "fal
+se", "", "false", "lang_es", "latin1", "latin1");
my $hitCount = qq{$result->{'estimatedTotalResultsCount'}};
print "$_ returns about $hitCount hits.\n";
if ($hitCount > 200) {
print OUTFILE "$_ returns about $hitCount hits.\n";
}
}
The problem I'm having is that the first word is queried and I get a $hitCount, but after that it's "500 Internal Server Error". Any idea what's causing this and how to solve it?
Thanks to all the Monks.
Cheers,
doonyakka
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.