in reply to Re^2: How do I access a password protected site and access data?
in thread How do I access a password protected site and access data?
and add:use LWP::Simple; use HTTP::Request; use HTTP::Cookies;
so your script will look something like this:use LWP;
It would be wise to add error checking in there as well. :)#!/usr/bin/perl use strict; use LWP; use LWP::UserAgent; my $URI = 'https://www.domain.com/protected_realm'; my $user = 'foo'; my $pass = 'bar'; # define user agent my $ua = LWP::UserAgent->new(); $ua->agent("USER/AGENT/IDENTIFICATION"); # make request my $request = HTTP::Request->new(GET => $URI); # authenticate $request->authorization_basic($user, $pass); # except response my $response = $ua->request($request); # get content of response my $content = $response->content(); # do whatever you need to do with the content here print $content; exit;
|
|---|