我是 CURL 世界的新手,来自 Windows + . NET 域。
尝试访问 RestAPI 以便在 http://www.evercam.io/docs/api/v1/authentication上进行基本身份验证。
curl -X GET https://api.evercam.io/v1/... \
-u {username}
不知道如何在命令提示符上使用这个命令成功地设置了 CURL:
C:\>curl --version
curl 7.33.0 (x86_64-pc-win32) libcurl/7.33.0 OpenSSL/0.9.8y zlib/1.2.8 libssh2/1.4.3
Protocols: dict file ftp ftps gopher http https imap imaps pop3 pop3s rtsp scp s
ftp smtp smtps telnet tftp
Features: AsynchDNS GSS-Negotiate Largefile NTLM SSL SSPI libz
现在我要以这个结束
C:\>curl -u myuser:mypassword -X GET https://api.evercam.io/v1/
curl: (51) SSL: no alternative certificate subject name matches target host name 'api.evercam.io'
我如何修复这个 SSL 问题51错误?