[Solved] Web Server Block libwww-perl requests
Use agent method provided by LWP::UserAgent to change “user agent identification string”. It should solve blocking based on client identification string. It will not solve blocking based on abusive behavior. perldoc LWP::UserAgent agent my $agent = $ua->agent; $ua->agent(‘Checkbot/0.4 ‘); # append the default to the end $ua->agent(‘Mozilla/5.0’); $ua->agent(“”); # don’t identify Get/set the product token … Read more