Codeigniter REST客户端GET / POST格式

时间:2017-05-16 14:25:34

标签: php rest codeigniter

我正试图通过网址访问我的休息api。这是我的要求

$this->load->library('rest', array(
            'server' => 'testurl',
            'http_user' => $this->api_configuration()['username'],
            'http_pass' => $this->api_configuration()['password'],
            'http_auth' => 'basic' 
        ));
$this->rest->get();

当我将这个Missing参数1用于REST :: get()时,我收到此错误 我可以知道需要什么论点吗?我没有找到任何解释的地方。

1 个答案:

答案 0 :(得分:0)

休息库的get方法需要第一个名为$uri的参数,请参阅:

https://github.com/philsturgeon/codeigniter-restclient

https://github.com/philsturgeon/codeigniter-restclient/blob/master/libraries/Rest.php#L117

使用应该是:

$this->rest->get('edit/post/1');

其中第一个参数是定义的休息服务器中的路径