3
votes
4answers
531 views
Why can’t I fetch wikipedia pages with LWP::Simple?
I'm trying to fetch Wikipedia pages using LWP::Simple, but they're not coming back. This code:
#!/usr/bin/perl
use strict;
use LWP::Simple;
print get("http://en.wikipedia.org/wiki/Stack_overflow");
…
