views:

40

answers:

2

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?

+1  A: 

I think the easiest method is to use a browser to get SSL protected pages. Try with iMacros for Firefox and its command line support (same for Google Chrome here).

Ruby8848
I might look into that for another project, but this one HAS to be done in curl. Thanks for the info, though!
Sho Minamimoto
A: 
curl --insecure

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

Aaron Saunders