kuce has asked for the wisdom of the Perl Monks concerning the following question:
Is there something wrong with my module installation? Thanks.#!/usr/bin/perl -w use strict; use LWP::Simple; use LWP::UserAgent; use LWP::Protocol::https; my $url = "https://www.goto.com/s/dtc/simple-signup/"; my $ua = new LWP::UserAgent; my $request = new HTTP::Request GET=> $url; my $page = $ua->request($request); if ($page->is_success) { print $page->content; } else { print $page->error_as_HTML; }
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Getting error trying to use Net::SSLeay in LWP script
by sutch (Curate) on Feb 07, 2001 at 07:45 UTC | |
by kuce (Novice) on Feb 07, 2001 at 07:57 UTC | |
by sutch (Curate) on Feb 07, 2001 at 08:03 UTC | |
by betauli (Initiate) on Mar 29, 2012 at 04:52 UTC | |
|
Re: Getting error trying to use Net::SSLeay in LWP script
by dsb (Chaplain) on Feb 07, 2001 at 19:48 UTC |