Hi,
It's a XML file that I want to Parse.
I try to use use LWP::UserAgent;
$ua = LWP::UserAgent->new;
$req = HTTP::Request->new(GET => $link);
$req->authorization_basic('login', 'password');
$document = $ua->request($req)->as_string;
but ->as_string returns a text version of the document that I can't parse.
I tried to do : $document = $ua->request($req);
but there isan error.