使用 HTTP 身份验证以编程方式下载文件

发布于 2024-11-01 00:48:02 字数 269 浏览 0 评论 0 原文

我想以编程方式下载一个文件(例如 http://rapidpich.ir/d/555864) php。但是,当我尝试点击网络浏览器中的链接时,系统会要求我输入用户名和密码。

如何在 PHP 中提供这些凭据并检索文件?

Windows 中的身份验证对话框

I want to download a file (e.g. http://rapidpich.ir/d/555864) programmatically using php. However, when I attempt to follow the link in my web browser, I'm asked for a username and password.

How can I provide these credentials in PHP and retrieve the file?

Authentication dialog in Windows

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

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

发布评论

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

评论(2

2024-11-08 00:48:02

通常要获取文件,您会编写如下内容:

$file_contents = file_get_contents("http://url.to/file");

您可以执行除存储到变量中之外的其他操作,或者可以使用不同的函数。

如果文件受 HTTP 身份验证保护,您通常可以在 URI 中指定凭据:

$file_contents = file_get_contents("http://username:[email protected]/file");

希望这会有所帮助。

Usually to grab a file you'd write something like:

$file_contents = file_get_contents("http://url.to/file");

You may do something other than store into a variable, or you may use a different function.

If the file is protected by HTTP authentication, you can usually specify the credentials in the URI:

$file_contents = file_get_contents("http://username:[email protected]/file");

Hope this helps.

悟红尘 2024-11-08 00:48:02

您可以使用 cURL 提交表单数据。

请查看此处 cURL 教程 和此处 php cURL

You can use cURL to submit form data.

Take a look here cURL tutorial and here php cURL

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