Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I've been developing gaming site and planning to add an API to let developers create games for the site. The only problem is how do you create an API more specifically a REST API in PHP or any other language that could develop APIs?

Sorry, just new in API Development.

Any help is appreciated.

share|improve this question

closed as not constructive by George Stocker Aug 2 '12 at 14:11

As it currently stands, this question is not a good fit for our Q&A format. We expect answers to be supported by facts, references, or specific expertise, but this question will likely solicit debate, arguments, polling, or extended discussion. If you feel that this question can be improved and possibly reopened, see the FAQ for guidance.

3 Answers

up vote 8 down vote accepted

It's pretty easy when you understand the fundamentals. Basically you want controllers mapped to actions that modify data, whether that data's in a database, XML file, CSV file, text file depends on your models.

I created a simple API framework starter that you can take a look at and get started with: https://github.com/martinbean/api-framework

share|improve this answer
Thanks Martin, your simple API framework is good and I could understand it better. Thanks a lot! – Sean francis Ballais May 17 '12 at 10:56
@MartinBean I realise this comes a little later, but is your framework linked above simply a 'starter' for basing your own API on or does it independently handle everything like I've seen many other frameworks do? – Kristian Matthews Jul 8 '12 at 15:27
@KristianMatthews It's literally a starter; you build your API on it how you wish. It doesn't assume anything about what your database setup or whatever is. You create your controllers and models; it handles the requests and responses, and is lightweight enough to be extended and built upon. – Martin Bean Jul 9 '12 at 14:35
@MartinBean That's perfect, exactly what I've been looking for, thank you. – Kristian Matthews Jul 9 '12 at 14:46
@KristianMatthews No problem. Drop me an email if I can help further or if you have any other questions. – Martin Bean Jul 9 '12 at 15:29
show 2 more comments

Check Recess PHP Framework . You can do a quick search on Google, there are a lot of articles available :)

share|improve this answer

I recently used FRAPI to do this, http://getfrapi.com/

It's focus is on burying all the donkey work and letting you concentrate on what the API really needs to DO! ... and as an added plus, it generates an API specification with no extra effort required.

share|improve this answer

Not the answer you're looking for? Browse other questions tagged or ask your own question.