my $text = qq("Researchers from the University of Minnesota's Institute on the Environment looked at 17 key crops that produce 86 percent of the world crop calories.);
my $ua = LWP::UserAgent->new();
my $response = $ua->post(
'http://query.yahooapis.com/v1/public/yql',
['q' => "select * from contentanalysis.analyze where text='".$text."'"]
);
print $response->content();
####
Query syntax error(s) [line 1:96 missing EOF at 's']
####