I am trying to retrieve an MRTG graph using Perl in Linux environment .
#!/usr/bin/perl
use strict;
use warnings;
use LWP::UserAgent;
use Data::Dumper;
my $ua = LWP::UserAgent->new;
$ua->timeout(10);
my $response = $ua->get('http://www.myview.internetaccess.tatacommunications.com/cgi-bin/');
if ($response->is_success) {
print $response->decoded_content; # or whatever
}
else {
die $response->status_line;
}
I used the code , but got the following error :-
Error: 401 Authorization Required at mrtg.pl line 18.
Then I added this to the code ,
$ua->credentials("url","username","password");
But I get the same error . Can anyone please help me fix it . Thanks .
Check the documentation for
LWP::UserAgent
again, you're missing a parameter:Probably an easier method would be just to include the u/p in the url.