in reply to Perl Mechanize and Single Sign On
But may be some JavaScript magic is used by this webpage so you need to check headers submitted from your web browser (I use Firefox's HTTPFox add-on for this). Also there is no need to$mech->submit_form( with_fields => { login_field => "somelogin", password_field => "somepassword", }, button => "your_submit_button_name", );
because Mechanize will work with cookies by default...$mech->cookie_jar(HTTP::Cookies->new());
|
|---|