Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Using Curl to get a Https webpage in Windows 7

I just need to fetch an https page, and I'm using curl currently by having the curl.exe application in my Path and calling it with a Perl file. However, then I get the error "* Protocol https not supported or disabled in libcurl". I've been looking around and I can't find a solid set of instructions to get it to work. I have installed cygwin, and OpenSSL-Win32 but something tells me I'm going to have to compile curl from scratch. I have no experience with this. How do you do it?

like image 617
VolatileRig Avatar asked Aug 25 '10 00:08

VolatileRig


2 Answers

I found the below steps worked well

  1. Download and unzip 64-bit cURL with SSL.
  2. Download the latest bundle of Certficate Authority Public Keys from mozilla.org.
  3. Rename this file from cacert.pem to curl-ca-bundle.crt
  4. Make sure both of them are in the PATH environment.

Test

curl -L https://www.google.com

UPDATE

If you are open to try other tools, I think httpie is also a good alternative.

like image 142
Aravind Yarram Avatar answered Oct 03 '22 21:10

Aravind Yarram


curl --insecure

If you'd like to turn off curl's verification of the certificate, use the -k (or --insecure) option.

like image 20
Aaron Saunders Avatar answered Oct 03 '22 21:10

Aaron Saunders