dongyi3776 2013-05-27 14:50
浏览 47
已采纳

PHP file_get_contents“需要授权”

I'm trying to fetch a file from a server that requires authentication. I have the following PHP code:

//Import categories
$url = "http://$username:$password@www.example.com";
$categoriesXML = file_get_contents($url);

var_dump($url . " > " . $categoriesXML);
return;

The output of this page is merely: string(22) "Authorization Required". I also tried with:

$context = stream_context_create(array('http' => array('header'  => "Authorization: Basic " . base64_encode("$username:$password"))));

$url = "http://www.example.com";
$categoriesXML = file_get_contents($url, false, $context);

var_dump($categoriesXML);
return;

I tried with cURL as well with the following code:

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_BINARYTRANSFER, 1);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_DIGEST);
$output = curl_exec($ch);
$info = curl_getinfo($ch);
curl_close($ch);

var_dump($output);
return;

The cURL returns a 301 code in the $info and the $output is empty. I'm a PHP/server newbie, what am I doing wrong?

  • 写回答

1条回答 默认 最新

  • dongyi1748 2013-05-27 15:30
    关注

    The OP's problem was due to choosing the wrong HTTP auth mechanism. Setting CURLOPT_AUTH to CURLAUTH_BASIC or the more permissive CURLAUTH_ANY proved to solve the problem.

    本回答被题主选为最佳回答 , 对您是否有帮助呢?
    评论

报告相同问题?

悬赏问题

  • ¥15 求螺旋焊缝的图像处理
  • ¥15 blast算法(相关搜索:数据库)
  • ¥15 请问有人会紧聚焦相关的matlab知识嘛?
  • ¥15 网络通信安全解决方案
  • ¥50 yalmip+Gurobi
  • ¥20 win10修改放大文本以及缩放与布局后蓝屏无法正常进入桌面
  • ¥15 itunes恢复数据最后一步发生错误
  • ¥15 关于#windows#的问题:2024年5月15日的win11更新后资源管理器没有地址栏了顶部的地址栏和文件搜索都消失了
  • ¥100 H5网页如何调用微信扫一扫功能?
  • ¥15 讲解电路图,付费求解