in reply to Auto login using mechanize module in perl ?

If the form token is already part of the form... Why are you fetching it? Its already part of the form. There is nothing you should be doing about a csrf form token
  • Comment on Re: Auto login using mechanize module in perl ?

Replies are listed 'Best First'.
Re^2: Auto login using mechanize module in perl ?
by vasanthgk91 (Sexton) on Jun 07, 2018 at 10:52 UTC
    Yes i got your point, that token also part of the form. I removed that fetching condition, i added few things ,now working
    $mech->cookie_jar(HTTP::Cookies->new());
    Now logged in properly .. Thank you