Open links in new tab
  1. 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 …

  2. 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 …

  3. What is the meaning of "curl -k -i -X" in Linux?

    Dec 7, 2017 · When you use curl to access a web page it is actually sending the GET request to the server. There are other kinds of request that can be used and -X is the way to specify this. As noted …

  4. 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.

  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 8 …

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

    May 13, 2019 · 13 you can capture network timing stats from curl. latencies of each phase in a request/response cycle can be useful to determine health.

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

    Jun 22, 2018 · In other words, when running curl [something] https://project.local/api/foo I want to be confident that if TLS is configured properly except for having a self-signed certificate the command …

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

  9. 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, 2 months ago Modified 7 years, 2 months ago

  10. 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 …