in reply to Anyone know why I can't scrape this page?

It definitely works for me also. What if you did something like this (from LWP::UserAgent):
$mech->get($url); if ($mech->response->is_success) { print $mech->response->content; # or whatever } else { die $mech->response->status_line; }

-Paul