Hi,
I'm trying to use WWW::Curl for the first time, and I'm getting a "No URL Set" error even though the code looks OK.
Here's the very basic code I've got this down to:
#!/usr/bin/perl
#
# Test script for Perl extension Curl::easy.
# Check out the file README for more info.
use CGI::Carp qw( fatalsToBrowser );
use WWW::Curl;
print "Content-type: text/html\n\n";
my $url = 'http://www.google.com';
print "Testing curl version ",WWW::Curl::Easy::version(),"\n";
my $curl= new WWW::Curl::Easy;
$curl->setopt(CURLOPT_URL, $url);
if ($curl->perform() != 0) {
print "\n
Failed ::".$curl->errbuf."\n";
};
It generates the "No URL set" error.
I've googled lots, and can't find anything substantial about this message.
Can anyone help? Any advice would be greatly, greatly appreciated,
Regards
Andy
Posts are HTML formatted. Put <p> </p> tags around your paragraphs. Put <code> </code> tags around your code and data!
Titles consisting of a single word are discouraged, and in most cases are disallowed outright.
Read Where should I post X? if you're not absolutely sure you're posting in the right place.
Please read these before you post! —
Posts may use any of the Perl Monks Approved HTML tags:
- a, abbr, b, big, blockquote, br, caption, center, col, colgroup, dd, del, details, div, dl, dt, em, font, h1, h2, h3, h4, h5, h6, hr, i, ins, li, ol, p, pre, readmore, small, span, spoiler, strike, strong, sub, summary, sup, table, tbody, td, tfoot, th, thead, tr, tt, u, ul, wbr
You may need to use entities for some characters, as follows. (Exception: Within code tags, you can put the characters literally.)
| |
For: |
|
Use: |
| & | | & |
| < | | < |
| > | | > |
| [ | | [ |
| ] | | ] |
Link using PerlMonks shortcuts! What shortcuts can I use for linking?
See Writeup Formatting Tips and other pages linked from there for more info.