Help for this page

Select Code to Download


  1. or download this
    use LWP::UserAgent;
    
    ...
    
    GET http://imdb.com/find?nm=on;mx=20;q=eliza%20dushku --> 302 Found
    GET http://imdb.com/name/nm0244630/ --> 200 OK
    
  2. or download this
    my $response = $ua->get($url);
    
    if ( $response->request->url->as_string ne $url ) {
        ...
    }