我正在尝试安装CodeIgniter的Restful客户端:https://github.com/philsturgeon/codeigniter-restclient。 目前我只是复制libraries目录中的Rest.php文件。但是当我通过以下方式加载库时:
$this->load->library('rest', array(
'server' => 'http://localhost/restserver/index.php/api/api',
'http_user' => 'admin',
'http_pass' => '1234',
'http_auth' => 'basic' // or 'digest'
));
它重新引导我访问GitHub网站。我该如何正确安装?