我正在执行HTTP请求以通过php填充iframe。 基本上,我不知道如何在同一重定向中进行基本身份验证。
我在标题中发送身份验证,但页面始终要求使用着名弹出窗口的凭据 - > http://prntscr.com/j0fao9
以下代码
$username = "suzy";
$password = "password";
$remote_url = 'http://10.10.10.215:8080/pentaho/api/repos/%3Apublic%3ASteel%20Wheels%3ADashboards%3ACTools_dashboard.wcdf/generatedContent';
// Create a stream
$opts = array(
'http'=>array(
'method'=>"GET",
'header' => "Authorization: Basic " . base64_encode("$username:$password")
)
);
$context = stream_context_create($opts);
function Redirect($remote_url, $context)
{
header('Location: ' . $remote_url, false, $context);
exit();
}
Redirect( $remote_url, false, $context);
问题可能在标题句中,有什么建议吗?
提前Tks!