raku-libcurl icon indicating copy to clipboard operation
raku-libcurl copied to clipboard

A Raku interface to libcurl.

Results 10 raku-libcurl issues
Sort by recently updated
recently updated
newest added

Hi Curt, It doesn't seem possible to send both `Accept: application/json` and `Content-Type: application/json` using LibCurl with version 7.82.0 of the library. This may be an issue with libcurl, not...

Here's a repro `MVM_SPESH_DISABLE=1 raku -MLibCurl::Easy -e 'my $c = LibCurl::Easy.new(URL => "https://example.com").perform; my $s; $s = $c.getinfo for ^100'` and some debugging info below (I disabled spesh because there's...

I am on `Android 10` running [Termux](https://termux.com/). It's a terminal emulator that's allowed me to build and install `raku`, `zef`, etc. I have a `curl` executable: ``` $ curl --version...

It's be nice if this (and perhaps the corresponding READFUNCTION libcurl options were made available to the end user. I've got an application sending chunked responses which does so upon...

From: William Michels I just updated to Rakudo-2020.06, and while updating many of my modules to their latest versions I saw an error installing/updating (Raku) LibCurl. Below, the first few...

Hi, I am using this module to talk to a REST API. Some API endpoints are available with the PUT method, some are available with the POST method. While talking...

What is the syntax for retrieving error content using `WWW` syntax (if any)? Related to #6.

I wanted to use the subs defined in https://github.com/CurtTilmes/perl6-libcurl/blob/master/lib/LibCurl/HTTP.pm6#L43-L54 in oder to talk to my https server. The server is a test/development box without propper certificates. usually i would do...

I successfully use LibCulrl::HTTP once or twice, but now I get: SSL connect error in method perform at /usr/local/rakudo.d/share/perl6/site/sources/08E9B748943417E15B3A29F01E431CF45AD845BC (LibCurl::Easy) line 583 in sub get-hosts-list at ./get-namecheap-dns-data.p6 line 98 in...

Testing the module on windows by running this simple script: ```raku use LibCurl::Easy; print LibCurl::Easy.new(URL => 'http://google.com').perform.content; ``` produces the below error: ``` Failed writing received data to disk/application in...