Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Thank you, Akhilause LWP::UserAgent; $ua = LWP::UserAgent->new; $req = HTTP::Request->new(GET => 'https://paypal.com'); $res = $ua->request($req); if ($res->is_success) { print ($res->content); }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: get rss feeds from web
by daxim (Curate) on Jul 18, 2007 at 00:02 UTC |