chimni has asked for the wisdom of the Perl Monks concerning the following question:
#! /usr/bin/perl use strict; use warnings; use WWW::Mechanize; my $mech = WWW::Mechanize->new(); my $url = "https://xyz.com/svi/app?login=true"; $mech->get($url); $mech->success or die "Can't fetch the Requested page"; print $mech->ct(); print $mech->content();
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WWW::Mechanize get problem
by castaway (Parson) on Mar 03, 2004 at 12:42 UTC | |
|
Re: WWW::Mechanize get problem
by Corion (Patriarch) on Mar 03, 2004 at 12:20 UTC |