PHP basic auth file_get_contents() [duplicate]

梦想与她 提交于 2019-12-05 17:04:23

问题


I need to parse some XML data from a website. The XML data is in raw format, but before I need to authentificate (basic webserver based auth, with username & password).

I tried:

$homepage = file_get_contents('http://user:password@IP:PORT/folder/file');

but I get the following error:

failed to open stream: HTTP request failed! HTTP/1.0 401 Unauthorized

PHP seems to have problems with the authentification. Any idea how to fix this?


回答1:


You will need to add a stream context to get the extra data in your request. Try something like the following untested code. It's based on one of the examples on the PHP documentation for file_get_contents():

$auth = base64_encode("username:password");
$context = stream_context_create([
    "http" => [
        "header" => "Authorization: Basic $auth"
    ]
]);
$homepage = file_get_contents("http://example.com/file", false, $context );


来源:https://stackoverflow.com/questions/30628361/php-basic-auth-file-get-contents

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!