in reply to how to allow POST to redirect

perldoc LWP::UserAgent:
$ua->requests_redirectable $ua->requests_redirectable( \@requests ) This reads or sets the object’s list of request names that "$ua->redirect_ok(...)" will allow redirection for. By default, this is "[’GET’, ’HEAD’]", as per RFC 2616. To change to include ’POST’, consider: push @{ $ua->requests_redirectable }, ’POST’;

Replies are listed 'Best First'.
Re^2: how to allow POST to redirect
by belg4mit (Prior) on Nov 08, 2004 at 00:07 UTC
    Interesting, except according to the RFC one should use 303

    --
    I'm not belgian but I play one on TV.