go-curl icon indicating copy to clipboard operation
go-curl copied to clipboard

golang curl(libcurl) binding.

Results 32 go-curl issues
Sort by recently updated
recently updated
newest added

Once I try to build an app containing the lib it returns the following error, docker image using [go-alpine](golang:1.18-alpine) #20 3.348 # [github.com/andelf/go-curl](http://github.com/andelf/go-curl) #20 3.348 In file included from /go/pkg/mod/github.com/andelf/[email protected]/const.go:5:...

Hi there, I am trying to build/run our program on a Windows Laptop machine. >go run main.go provider.go ``` # github.com/andelf/go-curl ..\go\pkg\mod\github.com\andelf\[email protected]\callback.go:8:10: fatal error: curl/curl.h: No such file or directory...

I haven't found a way to get cURL error code so far. When using `EasyInit`, it's returning error message string like `curl: Couldn't resolve host name`. ```go func main() {...

I get following error when trying to compile with the go-curl library: ``` ERROR # github.com/andelf/go-curl In file included from ../../../go/pkg/mod/github.com/andelf/[email protected]/const.go:5: ./compat.h:423:2: error: #error your version is TOOOOOOOO low 423...

Hi everyone Why cannot compile program for windows, while this works as well for Linux? This library have neutralized the language cross platform supporting? Or i miss something? #### [max@base...

``` # github.com/andelf/go-curl ../../go/pkg/mod/github.com/andelf/[email protected]/easy.go: In function ‘curl_formadd_name_content_length’: ../../go/pkg/mod/github.com/andelf/[email protected]/easy.go:40:5: warning: ‘curl_formadd’ is deprecated: since 7.56.0. Use curl_mime_init() [-Wdeprecated-declarations] 40 | return curl_formadd(httppost, last_post, | ^~~~~~ In file included from ../../go/pkg/mod/github.com/andelf/[email protected]/easy.go:5: /usr/include/curl/curl.h:2570:1:...

Hi, I am looking to retrieve SSL certificate expiry date information for a site. I see there is a INFO_CERTINFO argument to Easy GetInfo() method to obtain this information. The...

Hello, How store all Cookies in a file? like php : ``` ``` How can do this Using Go? @andelf