Rest service tester
You need admin grants to call Rest Service
This is a simple web interface for testing a custom REST service controller
\controllers\MyRest.php
which extends
framework\RestService class
To create PUT,GET,POST and DELETE rest service simple create a new controller by extending
framework\RestService
by overriding the following methods
public function httpGetRequest($method, $args)
public function httpPostRequest($method, $args)
public function httpPutRequest($method, $args)
public function httpDeleteRequest($method, $args)
GET requests:
POST request:
Show source code
Examples TOC