URLDownloadToFile 函数的替代方法

发布于 2024-12-26 14:25:21 字数 153 浏览 4 评论 0原文

是否有 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

不知所踪 2025-01-02 14:25:21

您可以尝试 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.

忆依然 2025-01-02 14:25:21

尝试使用 CInternetSession::OpenURL。我不确定它是否有助于解决您的无效证书问题,但您要求提供 URLDownloadToFile 的替代方案。

    CInternetSession connection;
    CStdioFile* stream = connection.OpenURL("https://www.google.com");

    const int capacity = 10000;
    char* buffer = new char[capacity];
    int bytes_read = stream->Read(buffer, capacity);

    FILE* output = fopen("C:\\output.html", "w");
    fwrite(buffer, 1, bytes_read, output);
    fclose(output);

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.

    CInternetSession connection;
    CStdioFile* stream = connection.OpenURL("https://www.google.com");

    const int capacity = 10000;
    char* buffer = new char[capacity];
    int bytes_read = stream->Read(buffer, capacity);

    FILE* output = fopen("C:\\output.html", "w");
    fwrite(buffer, 1, bytes_read, output);
    fclose(output);
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文