in reply to Re^2: WWW Mechanize not keeping session?
in thread WWW Mechanize not keeping session?

Trace and record your browsing session with HTTP::Recorder, or with any other logging feature, like the Live HTTP Headers. Then trace and record the session as your script produces it. Then look at the differences and eliminate them.

Most likely, you are using the wrong session ID, or are extracting the wrong cookie or something like that, but without looking at your script, the site you are trying to automate, and your successfull browser session, that's hard to tell - and if you have all three at your disposal, it's easy to see the differences, for example with the diff utility.

I have no better help to offer you, because all the automated tools already have failed, and thus you will have to do the task manually.

  • Comment on Re^3: WWW Mechanize not keeping session?