Open links in new tab
  1. What is `curl -o-`? - Unix & Linux Stack Exchange

    Mar 28, 2021 · (curl -o- and curl -o - act the same.) Explicitly sending the output to stdout seems a bit redundant, since that's the default anyway. However, the man page does mention using multiple -o …

  2. What is the meaning of "curl -k -i -X" in Linux? - Unix & Linux Stack ...

    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 …

  3. How do I make a POST request using curl? - Super User

    Sep 17, 2008 · 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.

  4. Return status code and body in curl - Unix & Linux Stack Exchange

    Oct 22, 2021 · Is it possible to use curl to call a REST service (POST method) and get: The HTTP status code. The response body. Other information like headers, methods, etc. are not relevant for my use …

  5. curl: (35) schannel: next InitializeSecurityContext failed - The ...

    Jul 28, 2023 · curl: (35) schannel: next InitializeSecurityContext failed - The revocation function was unable to check revocation for the certificate Ask Question Asked 2 years, 8 months ago Modified 7 …

  6. 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?

  7. Health check of web page using curl - Unix & Linux Stack Exchange

    May 13, 2019 · I'd like to do a health check of a service by calling a specific url on it. Feels like the simplest solution would be to use cron to do the check every minute or so. In case of errors, cron …

  8. Sending HTTP request via command line and curl - Super User

    Feb 4, 2019 · Sending HTTP request via command line and curl Ask Question Asked 7 years, 1 month ago Modified 7 years, 1 month ago

  9. Getting curl to output HTTP status code? - Super User

    Apr 18, 2011 · I'm using curl at the command line on Linux to issue HTTP requests. The response bodies are printed to standard out, which is fine, but I can't see from the man page how to get curl to …

  10. How to trust self-signed certificate in cURL command line?

    Jun 22, 2018 · 1 If you save off the self-signed.crt from your server, you can pass it to curl via "--cacert self-signed.crt" and curl will validate the certificate of your server using the given CA Cert.