I'm new to cURL, just installed it, but it looks like it only does what it feels. I am using the 64-bit version that I got from here: http://curl.haxx.se/latest.cgi?curl=win64-ssl-sspi with installation instructions. I found here: http://guides.instructure.com/m/4214/l/83393-how-do-i-install-and-use-curl-on-a-windows-machine . With a new Powershell window open, I can use a simple GET request:
curl http:
but if I run POST
curl -d "hello world" http:
he tells me "Invoke-WebRequest: the parameter cannot be processed because the parameter name" d "is ambiguous. Possible matches include: -DisableKeepAlive -Debug."
Trying to get help, I type
curl -h or curl --help
gives me "Invoke-WebRequest: Missing argument for the Headers parameter. Specify a parameter of type" System.Collections.IDictionary "and try again."
As I mentioned, I am new to cURL, but it seems strange that it can receive requests, but nothing more. Any ideas what I'm doing wrong?
Windows 7 64 bit Powershell 4 Version
windows curl powershell
Jonathon Nordquist Jul 30 '14 at 18:12 2014-07-30 18:12
source share