
What is `curl -o-`? - Unix & Linux Stack Exchange
Mar 28, 2021 · If not told otherwise, curl writes the received data to stdout. It can be instructed to instead save that data into a local file, using the -o, --output or -O, --remote-name options.
How to get and use certificates with curl - Super User
Oct 7, 2013 · I still can't figure out how to get and use certificates with curl but my ultimate goal has been accomplished. Maybe someone can help with the certificate bit.
What is the meaning of "curl -k -i -X" in Linux? - Unix & Linux …
Dec 7, 2017 · This option allows curl to proceed and operate even for server connections otherwise considered insecure. The server connection is verified by making sure the server's certificate contains the right name and verifies successfully using the cert store.
Get response body and show HTTP code by curl - Super User
May 8, 2018 · Reordering the curl output can be achieved by writing the output to a file. curl will send the information requested by the -w, --write-out option to stdout first.
How do I make a POST request using curl? - Super User
Oct 15, 2023 · The cURL tutorial on HTTP Scripting is also helpful for emulating a web browser. With libcurl, use the curl_formadd() function to build your form before submitting it in the usual way.
curl: (35) schannel: next InitializeSecurityContext failed - The ...
Jul 28, 2023 · tl;dr How can I fix "The revocation function was unable to check revocation for the certificate" when using a custom proxy+cert combination? Can I disable this check somehow for the whole system? I'm on a Windows 11 machine, trying to use a system proxy and also force the use of the proxy for non-standard tools on the system like cURL or wget.
Specifying minor TLS version when using curl - Super User
Jun 12, 2013 · Is there a way to specify curl to use a specific TLS version? Like 1.1 or 1.2? I can see only sslv3 and tlsv1 options in command help. I took latest src and compiled it with openssl 1.0.1e. Still d...
Run cURL commands from Windows console - Super User
Apr 26, 2010 · Is there a way to install cURL in windows in order to run cURL commands from the command prompt?
How to speed up curl? - Unix & Linux Stack Exchange
Apr 12, 2022 · Of course it is slow, you're downloading 1000 URLs. What do you want to change here? Are you trying to speed up each download or do you want to run multiple curl commands in paralel?
How to send POST with body, headers, and HTTP params using …
I found a lot of examples on how to use simple POST commands in cURL, but I didn't find examples on how to send full HTTP POST commands, which contain: Headers (Basic Authentication) HTTP Params (s...