in reply to Re^4: Thread::Queue and WWW::Curl
in thread Thread::Queue and WWW::Curl
Apologies, I omitted two use statements in the above hitFbNew subroutine, amended as follows:
sub hitFbNew { my ($method, $endpoint, $form) = (shift, shift, shift); use WWW::Curl::Easy; use WWW::Curl::Form; my $curl = WWW::Curl::Easy->new; my $curlf = WWW::Curl::Form->new; ...
|
|---|