in reply to Re: LWP and Google
in thread LWP and Google
I think what you need to do is setup your own bot/client in order for Google to allow you access.
If you try the following code, you'll see you can't get back the contents..
#!/usr/bin/perl use warnings; use strict; use LWP::Simple; my $source = get("http://www.google.ca/search?hl=en&q=langley+public+l +ibrary&meta="); print $source;
|
|---|