5

我在 HTTP 身份验证中遇到问题。我无法获取此 url 的内容,因为它需要 http auth。

代码:

<?php

$url = "http://www.abcdefg.com/12345/";

$username = 'username';
$password = 'password';

$ch = curl_init();
curl_setopt($ch, CURLOPT_URL, $url);
curl_setopt($ch, CURLOPT_RETURNTRANSFER, true);
curl_setopt($ch, CURLOPT_HTTPAUTH, CURLAUTH_ANY);
curl_setopt($ch, CURLOPT_USERPWD, "$username:$password");

$out = curl_exec($ch);

print "error:" . curl_error($ch) . "<br />";
print "output:" . $out . "<br /><br />";

curl_close($ch);

?>

问题是:它没有显示真实内容,而是显示“302 Found,文档已移至此处”。

我试过“http://username:password@www.abcdefg.com/12345/”,还是不行。

访问此 url(1) 时,弹出窗口要求输入用户名和密码。但弹出窗口来自另一个 url(2)(一个 sso 身份验证服务器)。如果通过认证。然后它再次回到 url(1)。这时候,我可以访问这个url(1)的内容了。

我使用firebug通过直接从浏览器访问 url 来获取以下消息:

步骤1

URL: GET http://www.abcdefg.com/12345/
Status: 302 Found
Protocol: http

第2步

URL: GET https://www.ssoauth.com/obrareq.cgi?wh=xxx wu=xxx wo=xxx rh=http://www.abcdefg.com ru=/12345/
Status: 302 Redirect
Protocol: https

第 3 步

URL: GET http://www.abcdefg.com/obrar.cgi?cookie=xxxxxxxxxxxxxxx
Status: 302 Found
Protocol: http

第4步

URL: GET http://www.abcdefg.com/12345/
Status: 200 OK
Protocol: http

然后显示内容……</p>

这与cookie有关吗?如何使用 php curl 读取内容?

4

1 回答 1

5

你必须设置:

curl_setopt($ch, CURLOPT_FOLLOWLOCATION, true);

这将使 cURL 服从 302 并生成额外的请求。

于 2012-05-29T02:30:22.397 回答