nate11000 has asked for the wisdom of the Perl Monks concerning the following question:
The way the page is set up, though, I can't get to the actual pricing pages I'm looking for - only to the front page.use LWP::UserAgent; my $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); my $req = HTTP::Request->new(POST => 'http://www.intrade.com/'); $req->content_type('application/x-www-form-urlencoded'); my $res = $ua->request($req); if ($res->is_success) { print OUT $res->content; }
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: Web navigation
by friedo (Prior) on Nov 20, 2005 at 23:41 UTC | |
by nate11000 (Initiate) on Nov 20, 2005 at 23:45 UTC | |
Re: Web navigation
by steveAZ98 (Monk) on Nov 21, 2005 at 00:58 UTC | |
Re: Web navigation
by sk (Curate) on Nov 21, 2005 at 00:37 UTC | |
Re: Web navigation
by kulls (Hermit) on Nov 21, 2005 at 03:54 UTC | |
by nate11000 (Initiate) on Nov 24, 2005 at 03:24 UTC |