Beefy Boxes and Bandwidth Generously Provided by pair Networks
Do you know where your variables are?
 
PerlMonks  

Re: cURL help

by elusion (Curate)
on Feb 16, 2003 at 17:13 UTC ( [id://235751]=note: print w/replies, xml ) Need Help??


in reply to cURL help

Try using LWP::Simple. (The docs are self-explanatory)

elusion : http://matt.diephouse.com

Replies are listed 'Best First'.
Re: Re: cURL help
by kmp (Initiate) on Feb 16, 2003 at 22:32 UTC
    I tried this bit of code pretty much right from the cpan LWP page and got the following errors in my error log.
    #!usr/bin/perl -w # Create a user agent object use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); # Create a request my $req = HTTP::Request->new(GET => 'http://www.e-gold.com/unsecure/ +metaldata.asp?LATEST=1&GOLD=1'); $req->content_type('application/x-www-form-urlencoded'); # $req->content('LATEST=1&GOLD=1'); # Pass request to the user agent and get a response back my $res = $ua->request($req); # Check the outcome of the response if ($res->is_success) { print $res->content; } else { print "Bad luck this time\n"; }
    failed to open log file fopen: Permission denied Sun Feb 16 16:22:39 2003 error client 68.58.80.240 Premature end of script headers: /usr/local/psa/home/vhosts/spendmaker.biz/cgi-bin/test3.cgi

      First you need to figure out why your web server isn't allowed to write to it's logs, but that isn't a perl issue. Second you need to try running that script from the command line and figure out why it's dying early. The first problem I see is on the very fist line (should be #!/usr/bin/perl -w).

Re: Re: cURL help
by kmp (Initiate) on Feb 16, 2003 at 19:24 UTC
    Will that work with SSL?
      Sorry, didn't see the 's' there. No, I don't think LWP::Simple supports SSL, but it'll work with LWP (the more complex version of LWP::Simple). Support in LWP is transparent, it seems. It's not too much harder to use either.

      elusion : http://matt.diephouse.com

        I tried this bit of code pretty much right from the cpan LWP page and got the following errors in my error log.
        #!usr/bin/perl -w # Create a user agent object use LWP::UserAgent; $ua = LWP::UserAgent->new; $ua->agent("MyApp/0.1 "); # Create a request my $req = HTTP::Request->new(GET => 'http://www.e-gold.com/unsecure/ +metaldata.asp?LATEST=1&GOLD=1'); $req->content_type('application/x-www-form-urlencoded'); # $req->content('LATEST=1&GOLD=1'); # Pass request to the user agent and get a response back my $res = $ua->request($req); # Check the outcome of the response if ($res->is_success) { print $res->content; } else { print "Bad luck this time\n"; }
        failed to open log file fopen: Permission denied Sun Feb 16 16:22:39 2003 error client 68.58.80.240 Premature end of script headers: /usr/local/psa/home/vhosts/spendmaker.biz/cgi-bin/test3.cgi
        Ok. I've never tried using modules before, but I'll give it a whirl... try something easy with it first.

Log In?
Username:
Password:

What's my password?
Create A New User
Domain Nodelet?
Node Status?
node history
Node Type: note [id://235751]
help
Chatterbox?
and the web crawler heard nothing...

How do I use this?Last hourOther CB clients
Other Users?
Others rifling through the Monastery: (2)
As of 2024-04-24 17:09 GMT
Sections?
Information?
Find Nodes?
Leftovers?
    Voting Booth?

    No recent polls found