Welcome Guest, Not a member yet? Register   Sign In
CI and Phil Strugeons REST API
#6

[eluser]moos3[/eluser]
Phil,
I have the example working. now trying to figure out the how the controller knows how to route stuff. I have created the following funciton in it but when I call /api/pastes/lists/format/xml it giving me a 404 below is my code.

Code:
<?php



require(APPPATH.'/libraries/REST_Controller.php');



class Api extends REST_Controller {



    function get_lists(){

        $this->load->model('languages');

        $data = $this->pastes->getLists();



        if($data){

            $this->response($data,200);

        }else{

            $this->response(NULL, 404);

        }

    }



    function paste_get(){

        if(!$this->get('id')){

            $this->response(NULL, 404);

        }



        $this->load->model('languages');

        $check = $this->pastes->checkPaste('id');

        if($check){

            $data = $this->pastes->getPaste('id',true);

        }else{

            $this->response(NULL, 404);

        }

        if($data){

            $this->response($data,200);

        }else{

            $this->response(NULL, 404);

        }

    }



}



?>
any help would be great, I have never done rest before so I'm trying to figure out this.


Messages In This Thread
CI and Phil Strugeons REST API - by El Forum - 11-15-2009, 04:48 PM
CI and Phil Strugeons REST API - by El Forum - 11-16-2009, 04:53 AM
CI and Phil Strugeons REST API - by El Forum - 11-16-2009, 06:51 AM
CI and Phil Strugeons REST API - by El Forum - 11-16-2009, 11:39 AM
CI and Phil Strugeons REST API - by El Forum - 11-17-2009, 08:44 AM
CI and Phil Strugeons REST API - by El Forum - 11-17-2009, 01:49 PM
CI and Phil Strugeons REST API - by El Forum - 11-17-2009, 05:23 PM
CI and Phil Strugeons REST API - by El Forum - 11-18-2009, 08:58 AM
CI and Phil Strugeons REST API - by El Forum - 11-18-2009, 09:24 AM
CI and Phil Strugeons REST API - by El Forum - 11-18-2009, 10:35 AM
CI and Phil Strugeons REST API - by El Forum - 11-18-2009, 10:50 AM
CI and Phil Strugeons REST API - by El Forum - 11-18-2009, 12:09 PM
CI and Phil Strugeons REST API - by El Forum - 02-04-2010, 03:28 AM
CI and Phil Strugeons REST API - by El Forum - 02-04-2010, 04:06 AM
CI and Phil Strugeons REST API - by El Forum - 02-04-2010, 04:13 AM
CI and Phil Strugeons REST API - by El Forum - 02-04-2010, 04:23 AM
CI and Phil Strugeons REST API - by El Forum - 02-05-2010, 08:28 AM
CI and Phil Strugeons REST API - by El Forum - 02-19-2010, 05:15 AM
CI and Phil Strugeons REST API - by El Forum - 02-25-2010, 04:17 AM
CI and Phil Strugeons REST API - by El Forum - 07-21-2010, 07:10 AM



Theme © iAndrew 2016 - Forum software by © MyBB