Welcome Guest, Not a member yet? Register   Sign In
How to use Phil Sturgeon's REST_SERVER
#7

[eluser]PaulDunn[/eluser]
Hmm I cannot seem to get it working.

My rest server:
Code:
class Api extends REST_Controller
{    
    function property_get()
    {  
        $this->response($this->Property_model->get_property(), 200);
    }
}

That works fine when accessed from a browser:
http://localhost/index.php/api/property

But when I use the client library I dont get any response:
Code:
class Test extends Controller
{
    function index()
    {
        $this->load->library('rest', array('server' => "http://localhost/index.php/api/"));
    
        print_r($this->rest->get('property', array('id' => '1'),'application/json'));
    }
}

Nothing happens when I browse to:
http://localhost/index.php/test

Any ideas?

Thanks for all the help so far! Smile


Messages In This Thread
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 09:21 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 09:59 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 10:07 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 10:14 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 10:17 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-18-2010, 10:22 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 07:37 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 09:01 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 09:31 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 10:52 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 12:34 PM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-21-2010, 02:23 PM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-22-2010, 02:50 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 11-22-2010, 02:59 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 12-04-2010, 04:54 PM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 12-09-2010, 02:38 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 12-09-2010, 04:08 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 03-16-2011, 11:14 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 03-16-2011, 11:18 AM
How to use Phil Sturgeon's REST_SERVER - by El Forum - 03-16-2011, 11:22 AM



Theme © iAndrew 2016 - Forum software by © MyBB