fayland has asked for the wisdom of the Perl Monks concerning the following question:
It keeps telling me that my email and password is incorrect. but I can login by my browser indeed.#!/usr/bin/perl -w use strict; use Data::Dumper; use WWW::Mechanize; my $mech = WWW::Mechanize->new( agent => 'Mozilla/4.0 (compatible; MSIE 6.0; Windows NT 5.1)', cookie_jar => {}, stack_depth => 1, autocheck => 1, ); $mech->get('http://www.hotmail.com'); $mech->submit_form( form_name => 'f1', fields => { login => 'myemail@hotmail.com', passwd => 'passwd', LoginOptions => 3, } ); print $mech->content();
|
---|
Replies are listed 'Best First'. | |
---|---|
Re: how to import hotmail addressbook by WWW::Mechanize or something else
by inman (Curate) on Nov 21, 2006 at 13:48 UTC | |
by fayland (Acolyte) on Nov 22, 2006 at 01:49 UTC |