加载带有身份验证的 xml 文件(并提高安全性)
我正在尝试使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您应该能够将用户名和密码添加到您要打开的 URL 前面。而不是
尝试
You should be able to prepend the username and password to the URL you're opening. Instead of
try
这是我第一次尝试使用 cURL 使其更安全:
This is my first attempt at making it more secure, using cURL: