Restler API framework installation

♀尐吖头ヾ 提交于 2019-12-23 21:12:57

问题


I want to start using Restler to develop a Rest api but, I couldn't find any detail information on how to install it, besides, it seems to run on a nginx server.

Is there a way to run this framework on apache? Are there other alternatives for building high quality APIS? Is there a detail documentation about installing this framework?

I must be able to run this framework on apache and using php5.3

Thanks


回答1:


you have to enable apache mod_rewrite




回答2:


I'm running restler (somewhat modified) for an API (api.hostingxs.nl). It works fine on apache with PHP 5.3. Just clone the repository from github (git clone https://github.com/Luracast/Restler.git <yourdirectory>) and start including classes that use it (read the manual).

If you need more directions I can post some sample code, but the basic functionality is really easy if you understand Object Oriented PHP.

First off, redirect all requests to your restler domain, folder to the index.php and create that file with something like this:

require_once( "restler.php" ); # or whatever you need to link to
$r = new Restler;
$r -> handle();
# above is the basic functionality without any of your own things

Click on the classes in the following link to read more about setting up your own classes; help.luracast.com/restler/examples/_002_minimal/readme.html




回答3:


If you're wanting to create a RESTful API, then I created a lightweight framework for exactly that: https://github.com/martinbean/api-framework



来源:https://stackoverflow.com/questions/12074979/restler-api-framework-installation

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!