gpt4 book ai didi

PHP file_get_contents 在一台服务器上工作,但在

转载 作者:可可西里 更新时间:2023-11-01 16:30:43 25 4
gpt4 key购买 nike

我有一个脚本可以使用以下代码从另一个页面加载信息:

    $creds = 'user:password';
$base64 = base64_encode($creds);

$base_url = 'http://example.com/page.html';
$data = file_get_contents($base_url.$path, false, $auth);

这在一台服务器(我的本地服务器,使用 Ubuntu)上运行良好,但在从外部服务器运行时会给我以下 header :

<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>401 Authorization Required</title>
</head><body>
<h1>Authorization Required</h1>
<p>This server could not verify that you
are authorized to access the document
requested. Either you supplied the wrong
credentials (e.g., bad password), or your
browser doesn't understand how to supply
the credentials required.</p>
<hr>
<address>Apache/2.2.14 (Unix) mod_ssl/2.2.14 OpenSSL/0.9.7a DAV/2 SVN/1.6.6 PHP/5.3.14 JRun/4.0 Server at ww2.rch.org.au Port 80</address>
</body></html>

我应该在这里寻找什么特别的东西吗?如果有帮助,我已经在两台服务器上将 allow_url_fopen 设置为 true。

编辑: 抱歉,其中还有一些其他代码需要删除。 $auth 如下:

$auth = stream_context_create(array(
'http' => array(
'header' => 'Authorization: Basic '.$base64
)
));

$auth 是一个流上下文,包含授权 header 。

最佳答案

根据documentation of the function没有“auth”参数。

HTTP 凭据通常以这种格式添加:

http://username:password@example.com/page.html

关于PHP file_get_contents 在一台服务器上工作,但在,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/14933446/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com