我正在尝试为我的解决方案安装CodeIgniter RESTClient和RESTServer库。 (philsturgeon-codeigniter-restclient和chriskacerguis-codeigniter-restserver)。
我设法让其他服务器启动并运行,但我遇到了其他客户端的问题。
这些是我现在所做的步骤:
$this->_ci->load->library('curl');
(如果我将鼠标悬停在此文件中的curl库的用法上,我会收到以下消息):在CI_Controller中找不到字段'curl'
我创建了一个名为“Restclient”的新控制器来测试我的API。在这个控制器中,我创建了以下方法:
function rest_client_example($id)
{
$this->load->library('rest', array(
'server' => 'localhost/codeigniter/api/users/'
));
$user = $this->rest->get('volunteer', array('id' => $id), 'json');
var_dump($user);
}
浏览http://localhost/codeigniter/api/restclient/rest_client_example/25然后给我
D:\wamp\www\codeigniter\application\controllers\api\Restclient.php:36:null
执行以下代码而不是上述代码时,我得到了正确的结果:
$this->load->library('curl');
$t = $this->curl->simple_get('api/users/volunteer', array('id'=>$id));
var_dump($t);
所以我知道卷曲正在发挥作用。
我的猜测是我在加载curl库时遇到了什么问题?
答案 0 :(得分:1)
我知道你的问题是针对这里提到的图书馆的。你还试过别的吗?我用guzzle http取得了非常好的成功