Anonymous Monk has asked for the wisdom of the Perl Monks concerning the following question:
Can someone help me figure out how to use SSLeay to get this to work?#!/usr/bin/perl use strict; use warnings; use SSleay; use CGI::Carp qw(fatalsToBrowser); use CGI qw/:standard/; use WWW::Mechanize; my $name= "##"; my $pass= "##"; my $browser=WWW::Mechanize->new(); $browser->get("https://secured.goldleaf.com/commandcenterplus/"); $browser->form(1); $browser->field("username", $name); $browser->field("password", $pass); $browser->click(); print "Location: https://secured.goldleaf.com/commandcenterplus/main.a +sp\n\n";
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: using WWW::Mechanize with HTTPS
by moot (Chaplain) on Apr 30, 2005 at 03:22 UTC | |
|
Re: using WWW::Mechanize with HTTPS
by cbrandtbuffalo (Deacon) on Apr 30, 2005 at 12:41 UTC | |
|
Re: using WWW::Mechanize with HTTPS
by blucap (Initiate) on Feb 14, 2008 at 17:04 UTC |