I'm not experienced with Mechanize, but there is a lot you can use from LWP. The method submit returns an HTTP::Response object that you can use to check for the results you get. With that object you can check whether you are being redirected or not. Just look into the headers and check the status code you are receiving. Status codes of class 30x indicate redirection.

There is also a chance you get a status code of 200 and yet being asked to redirect (refresh to some other url). In the code below there are a few methods that may get you started in looking into the response headers. Read LWP's docs.

use strict; use warnings; use HTTP::Request::Common; use LWP::UserAgent; use Data::Dumper; my $ua = LWP::UserAgent->new(); my $response = $ua->request(GET "http://some.url"); print $response->headers_as_string; print $response->content; print $reponse->is_success; print $response->status_line; print Dumper($response);

In reply to Re: how to follow the redirected web pages? by olus
in thread how to follow the redirected web pages? by yusy

Title:
Use:  <p> text here (a paragraph) </p>
and:  <code> code here </code>
to format your post, it's "PerlMonks-approved HTML":



  • Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
  • Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
  • Read Where should I post X? if you're not absolutely sure you're posting in the right place.
  • Please read these before you post! —
  • Posts may use any of the Perl Monks Approved HTML tags:
    a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
  • You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
            For:     Use:
    & &amp;
    < &lt;
    > &gt;
    [ &#91;
    ] &#93;
  • Link using PerlMonks shortcuts! What shortcuts can I use for linking?
  • See Writeup Formatting Tips and other pages linked from there for more info.