in reply to Go to Website that requires Login

If I understand your question correctly, sounds like LWP will solve your problem.

## http://mysite/goto.pl ## use strict; use LWP::UserAgent; my $url = 'http://otherwebsite/deeplink.html'; my $ua = LWP::UserAgent->new; my $response = $ua->post( $url, [username=>'username', password=>'password'], ); if ($response->is_success) { my $deeplink = $response->content; print $deeplink; } else { my $errmsg = $response->status_line; .... }

Replies are listed 'Best First'.
Re^2: Go to Website that requires Login
by Anonymous Monk on Nov 21, 2006 at 16:15 UTC
    I like to have user goto other site, rather than print the cotent of that site even in frames. Such is the case, because othersite want to do something with user login.