in reply to How do I programatically follow redirects?
There is a wrapped up IO class called IO::Socket::INET that should for websites...
try
Then (in case you want to get some data from the connected socket)$client = IO::Socket::INET->new("PeerAddr => "the.host.com", PeerPort +=> 80, Type => SOCK_STREAM, Timeout => (How ever long you think it sh +ould wait for a reply)) or die $@;
if you get this far without error, then the site should be up and you can read from that socket and should be able to pick out bytes of the HTML markup... I think...bind(SOCKET, $client) or die "bind: $!";
Read more on sockets to get ideas on how to read via $client->recv($data_read, $flags) or die...
|
|---|