URLDownloadToFile 函数的替代方法
是否有 URLDownloadToFile
函数的替代方案?我无法从证书无效的 HTTPS 服务器下载任何内容。是否有任何通用 HTTP 客户端可用于从证书无效的 HTTPS 服务器下载文件?对于这种情况还有其他替代方案吗?谢谢你!
Are there any alternative to the URLDownloadToFile
function? I cannot download anything from an HTTPS server with invalid certificate. Are there any generic HTTP clients which I can use to download a file from an HTTPS server with an invalid certificate? Are there any other alternatives for this situation? Thank you!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以尝试 libcurl,一个易于使用的客户端 URL 传输库。
这里讲一下如何用它来处理ssl cert。
You can try libcurl, a easy-to-use client-side URL transfer library.
Here talks about how to deal with ssl cert with it.
尝试使用 CInternetSession::OpenURL。我不确定它是否有助于解决您的无效证书问题,但您要求提供 URLDownloadToFile 的替代方案。
Try using CInternetSession::OpenURL. I'm not sure if it helps with your problem with invalid certificates, but you were asking for alternatives to URLDownloadToFile.