|
- 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
- http - How do I make a POST request using curl? - Super User
@tom-wijsman explanation: curl -X POST implies an HTTP POST request, the -d parameter (long version: --data) tells curl that what follows will be POST parameters, and @filename designates the contents of the file filename as parameter This approach works best with RESTful HTTP APIs as found at Twitter, Facebook, various other web services
- Does `curl -v` show the complete HTTP request including the body?
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
- Run cURL commands from Windows console - Super User
How to setup cURL: Download and unzip 64-bit cURL with SSL Copy the curl exe file into your Windows PATH folder By default, this is C:\Windows\System32 Download and install the Visual Studio 2010 C++ Runtime Redistributable 64 bit here Download the latest bundle of Certficate Authority Public Keys from mozilla org here
- curl: (35) schannel: next InitializeSecurityContext failed - The . . .
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 Currently I can see the proxy being used for normal operations through a web browser and powershell
- What is the meaning of curl -k -i -X in Linux?
(TLS) By default, every SSL connection curl makes is verified to be secure 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
Stack Exchange Network Stack Exchange network consists of 183 Q A communities including Stack Overflow, the largest, most trusted online community for developers to learn, share their knowledge, and build their careers
- How to get and use certificates with curl - Super User
Once you have curl you can simply do things like updating your opendns ip curl -u opendnsusername
|
|
|