TommyAllan has asked for the wisdom of the Perl Monks concerning the following question:
Any ideas?#!/bin/perl use LWP::UserAgent; use HTTP::Request::Common; use Crypt::SSLeay; use HTTP::Cookies; use HTTP::Headers; print "Content-type: text/html\n\n"; $ua = LWP::UserAgent->new; $login = "https://secure.video.uefa.com/Selfcare/default.aspx?navGraph +=Login"; $req = HTTP::Request->new(GET => $login); $res = $ua->request($req); print $res->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: LWP::UserAgent gives ASP.NET error
by grinder (Bishop) on Oct 14, 2007 at 11:54 UTC | |
|
Re: LWP::UserAgent gives ASP.NET error
by dsheroh (Monsignor) on Oct 14, 2007 at 14:55 UTC | |
by Anonymous Monk on Oct 15, 2007 at 09:05 UTC | |
|
Re: LWP::UserAgent gives ASP.NET error
by erroneousBollock (Curate) on Oct 14, 2007 at 12:02 UTC | |
|
Re: LWP::UserAgent gives ASP.NET error
by Gangabass (Vicar) on Oct 15, 2007 at 04:05 UTC |