URLDownloadToFile 和身份验证

发布于 2024-09-12 00:05:46 字数 353 浏览 6 评论 0原文

我正在开发一些旧的 ATL OCX,用作“下载管理器”。 它使用 URLDownloadToFile API 下载文件。

以前,它作为 ActiveX 托管在网页上,因此如果服务器需要身份验证,则由 IE 完成。现在它是可执行文件的一部分,因此它应该负责身份验证。 假设用户提供了用户名和密码,我实际上如何进行“身份验证”?我需要 IIS 的简单 Web 身份验证NTLM支持。

对于简单 Web 身份验证,我发现在 URL 之前传递用户名/密码效果很好。但我不确定这是否是正确的方法。

请指教 谢谢 扎基

I'm working on some old ATL OCX, that is used as "download manager".
It downloads files using URLDownloadToFile API.

Previously, it was hosted as ActiveX on web page so in case the server required authentication it was done by IE. Now it is part of executable, so it should take care of authentication.
Let say user provided username and password, how I can actually to do "authentication" ? I need support Simple Web Authentication and NTLM for IIS.

For Simple Web Authentication i found out that passing username/password before URL works fine. But I'm not sure that it is a proper way to so.

Please advise
Thank you
Zaky

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

筑梦 2024-09-19 00:05:47

简单 Web 身份验证可以使用 http://username:[电子邮件受保护] 应该没问题。这是一种安全且简单的方法。
如果由于某种原因您需要的不止于此,您可以使用 InternetOpenInternetSetOptionInternetReadFile。这应该又快又简单。

Simple Web Authentication can be done using http://username:[email protected] and should be fine. It's a safe and simple way to do this.
If for some reason you need more than this you can re-implement this function by using InternetOpen, InternetSetOption, InternetReadFile. This should be fast and easy.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文