|
- What is `curl -o-`? - Unix Linux Stack Exchange
(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 options for multiple URLs to download, so it might be more useful in that context
- How to get and use certificates with curl - Super User
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
- How to tell curl to use one client cert from the Windows Cert Store . . .
The link I gave was for curl, so it's supposed to work Perhaps you could force it with the curl parameter --cacert file or --cert Otherwise, perhaps curl doesn't like the certificate for some reason
- Run cURL commands from Windows console - Super User
Is there a way to install cURL in windows in order to run cURL commands from the command prompt?
- Does `curl -v` show the complete HTTP request including the body?
The description of curl ’s -v option says -v, --verbose Makes curl verbose during the operation Useful for debugging and seeing what's going on "under the hood" A line starting with '>' means "header data" sent by curl, '<' means "header data" received by curl that is hidden in normal cases, and a line starting with '*' means additional info provided by curl If you only want HTTP headers
- What is the meaning of curl -k -i -X in Linux? - Unix Linux Stack . . .
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
- Getting curl to output HTTP status code? - Super User
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 print the
- Why cant cURL properly verify a certificate on Windows?
In that case, you will want to generate your own curl-ca-bundle crt file You can use certreq exe and openssl exe to export such a cert from the IE Windows store, and then convert-to-pem-format, respectively
|
|
|