我正在使用Phil Sturgeon 的 library构建一个 RESTful 服务。它在本地主机(Windows 7,WAMP 服务器)上就像一个魅力。但是在 Web 服务器 (CentOS) 上部署时,我无法获得基本身份验证。我尝试在第 880 行修改 REST_Controller.php:
protected function _check_login($username = '', $password = NULL)
{
$this->response(array("username"=>$username, "password"=>$password));
if (empty($username))
{
return FALSE;
}
...
响应中的用户名和密码均为空。谁能告诉我如何解决这个问题?提前致谢!
[更新] 我在这里找到了答案:http ://www.sslcatacombnetworking.com/articles/http-authentication-php-cgi.html