http://qs1969.pair.com?node_id=551008

coldfingertips has asked for the wisdom of the Perl Monks concerning the following question:

I read a post on how to fake an HTTP referer but that was for WWW::Mechanze and I'm working with LWP::UserAgent.

I came across this code

$ua->default_header('Accept-Language' => "no, en");
So I am thinking that it can be done through here, but what would I use? ua->default_header('Referer' => "test"); , ua->default_header('referer' => "test");, ua->default_header('Refer' => "test"); , ua->default_header('refer' => "test"); , etc.

Thanks everyone.