发布请求无法使用Restful API Codeigniter

时间:2016-08-11 15:04:53

标签: php codeigniter api rest jsonresponse

我在Codeigniter项目上安装了RESTful Codeigniter API。当我测试API示例并通过http://textilexports.com/donate/api/example/users网址通过Chrome邮递员休息客户端进行调用时,我在发布回复中收到了该错误。

{
    "id": 100
    "name": null
    "email": null
    "message": "Added a resource"
}
public function users_post()
{
    // $this->some_model->update_user( ... );
    $message = [
        'id' => 100, // Automatically generated by the model
        'name' => $this->input->post('name'),
        'email' => $this->input->post('email'),
        'message' => 'Added a resource'
    ];
    $this->set_response($message, REST_Controller::HTTP_CREATED);
}

1 个答案:

答案 0 :(得分:0)

我已经在Firefox中使用RESTED客户端检查了您的REST API.Below是您在屏幕截图中提到的传递参数时的输出。在Chrome扩展中也是如此。 enter image description here