plink has asked for the wisdom of the Perl Monks concerning the following question:
Problem seems to be with the code at line 6. I am not able to login, successfully to the site. I suspect the path "http:://www/.." is not the right one. How can i find the right one where to pass all the params necessary to login into the mail? Thanks1.)use LWP::UserAgent; 2.)use strict; 3.)my $user = ''; 4.)my $pass = ''; 5.)my $ua = LWP::UserAgent->new(); 6.)my $resp = $ua->get("http://www.webmail.com/login?u=".$user."&passw +ord=".$pass ); 7.)die if !$resp->is_success; #the rest of code here ----------->
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re: WebMail authentication
by spazm (Monk) on Aug 02, 2009 at 21:26 UTC | |
|
Re: WebMail authentication
by Marshall (Canon) on Aug 02, 2009 at 16:49 UTC | |
by spazm (Monk) on Aug 02, 2009 at 23:23 UTC | |
by Marshall (Canon) on Aug 04, 2009 at 20:24 UTC |