#!/usr/bin/perl

use strict;
use URI;
#use HTTP::Request::Common qw(GET);
use LWP;
#use HTTP::Response;

my $browser = LWP::UserAgent->new;
$browser->env_proxy();
my
$response=$browser->get('http://finance.yahoo.com/d/quotes.csv?s=msft&f=sl1d1t1c1ohgv');
print $response->content;

Can someone please tell me how to solve this error message when i type
perl test.pl at the prompt. test.pl is the filename

Can't locate object method "get" via package "LWP::UserAgent"


-- 
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to