python (65.1k questions)
javascript (44.2k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (12.9k questions)
Is it possible to get used TLS version information?
I'm using the following code:
curl_easy_setopt( curl_ptr, CURLOPT_SSLVERSION, CURL_SSLVERSION_TLSv1_2 | CURL_SSLVERSION_MAX_TLSv1_2 );
But I have reason to believe it's not actually using TLS 1.2 sti...
cbrng
Votes: 0
Answers: 1
cURL write_callback does not pass userdata argument
I am trying to collect some data from a URL. If I do not define any CURLOPT_WRITEFUNCTION and CURLOPT_WRITEDATA I can obviously see the output on console. Then I tried to write that data to memory by...
hyorman
Votes: 0
Answers: 1
How to use own openssl header in libcurl on macOS
I download and compile openssl 3.0.2 from source and want to link it with libcurl on macOS, however, I encounter some issues, I use latest libcurl 7.82.0.
below is configure.
./configure --prefix=&qu...
Jerry YY Rain
Votes: 0
Answers: 1
How to read the JSON Error response returned from Server using Libcurl
I have a requirement where I have to read the error response from backend server which returns 500 Internal Server error. The error response is in JSON Format.
Below is the code snippet used in our ap...
chargedfever
Votes: 0
Answers: 1