zend-rest Questions
3
Solved
I'm new to Zend Framework (not to PHP), and I need to create a REST based API using Zend.
I've seen examples using Zend_Rest_Server, however other sources state that that has been deprecated.
I'm...
Salicin asked 15/3, 2011 at 13:53
2
I am building REST API on Zend Framework 2. I want to send certain status code in response whenever any error has occurred.
I tried below in my controller :
$statusCode = 401;
$this->response-...
Trichinize asked 10/1, 2014 at 10:49
2
Solved
Following is my module config file
return array(
'controllers' => array(
'invokables' => array(
'RSMobile\Controller\User' => 'RSMobile\Controller\UserController',
),
),
// Routes for...
Astronaut asked 27/12, 2013 at 11:59
3
Solved
With the Zend Framework, I am trying to build routes for a REST api on resources organized in the following pattern:
http://example.org/users/
http://example.org/users/234
http://example.org/user...
Wardieu asked 5/2, 2010 at 2:14
2
Solved
With the introduction of Zend_Rest_Route in Zend Framework 1.9 (and its update in 1.9.2) we now have a standardized RESTful solution for routing requests. As of August 2009 there are no examples of...
Amadaamadas asked 27/8, 2009 at 21:3
1
© 2022 - 2024 — McMap. All rights reserved.