Hi,
I am trying to make http request to another server and read a web page from inside perl.
Here is the code i am using
I am not able to get the content.(i.e.Couldn't get Am i missing something or is it a credentials issue?
--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.
I am trying to make http request to another server and read a web page from inside perl.
Here is the code i am using
Code:
my $url = "[URL unfurl="true"]http://www.<somesite>.com"[/URL] ;
use LWP::Simple;
my $content = get $url;
die "Couldn't get $url" unless defined $content;
print $content ;
I am not able to get the content.(i.e.Couldn't get Am i missing something or is it a credentials issue?
--------------------------------------------------------------------------
I never set a goal because u never know whats going to happen tommorow.