in reply to Re: login???
in thread LWP and Logging into webpages
but this just gives me the default page not my page after i log in.#!/usr/bin/perl use strict; use HTTP::Request; use LWP::UserAgent; my $ua = LWP::UserAgent->new; my $req = HTTP::Request->new(POST=>'http://perlmonks.com/index.pl'); $req->authorization_basic('maddfisherman', '********'); my $content = $ua->request($req)->as_string;
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: Re: Re: login???
by joealba (Hermit) on Jun 23, 2002 at 14:26 UTC | |
by maddfisherman (Sexton) on Jun 23, 2002 at 16:14 UTC | |
by joealba (Hermit) on Jun 24, 2002 at 13:04 UTC | |
by maddfisherman (Sexton) on Jun 28, 2002 at 18:17 UTC | |
|
Re: Re: Re: login???
by crazyinsomniac (Prior) on Jun 23, 2002 at 05:02 UTC |