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?
相关问题
- Inheritance impossible in Windows Runtime Componen
- $ENV{$variable} in perl
- Google Apps Script: testing doPost() with cURL
- how to get running process information in java?
- Is TWebBrowser dependant on IE version?
相关文章
- 如何让cmd.exe 执行 UNICODE 文本格式的批处理?
- 怎么把Windows开机按钮通过修改注册表指向我自己的程序
- Warning : HTML 1300 Navigation occured?
- Bundling the Windows Mono runtime with an applicat
- Windows 8.1 How to fix this obsolete code?
- Running a perl script on windows without extension
- Comparing speed of non-matching regexp
- CosmosDB emulator can't start since port is al
I found the below steps worked well
PATH
environment.Test
UPDATE
If you are open to try other tools, I think httpie is also a good alternative.
If you'd like to turn off curl's verification of the certificate, use the -k (or --insecure) option.