加载带有身份验证的 xml 文件(并提高安全性)

发布于 2024-10-18 13:13:39 字数 318 浏览 6 评论 0原文

我正在尝试使用 simplexml 从服务器加载 xml 文件:

$xml = simplexml_load_file($xml_query);

服务器需要 HTTP 身份验证,因此(毫不奇怪)我收到一条错误消息:

HTTP 请求失败! HTTP/1.1 401 未经授权

是否可以使用此功能将我的用户名和密码传递到服务器?

编辑

如果有人能告诉我一种更安全的方法来做到这一点,我将不胜感激。

I'm trying to use simplexml to load an xml file from a server:

$xml = simplexml_load_file($xml_query);

The server needs HTTP authentication, so (unsurprisingly) I get an error message:

HTTP request failed! HTTP/1.1 401
Unauthorized

Is it possible to pass my username and password to the server using this function?

EDIT

If anyone can tell me a more secure way to do this, I'd be grateful.

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

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

发布评论

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

评论(2

江城子 2024-10-25 13:13:39

您应该能够将用户名和密码添加到您要打开的 URL 前面。而不是

http://link.to/file.xml

尝试

http://username:[email protected]/file.xml

You should be able to prepend the username and password to the URL you're opening. Instead of

http://link.to/file.xml

try

http://username:[email protected]/file.xml
远山浅 2024-10-25 13:13:39

这是我第一次尝试使用 cURL 使其更安全:

$ch = curl_init();

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt($ch, CURLOPT_URL, $xml_query);
curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password);
$result = curl_exec($ch);
curl_close($ch);

$xml = simplexml_load_string($result);

This is my first attempt at making it more secure, using cURL:

$ch = curl_init();

curl_setopt($ch, CURLOPT_RETURNTRANSFER, 1);  
curl_setopt($ch, CURLOPT_URL, $xml_query);
curl_setopt($ch, CURLOPT_USERPWD, $username . ':' . $password);
$result = curl_exec($ch);
curl_close($ch);

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