vote up 9 vote down star
4

Hi all,

I have a PHP web application that I want to create an API for. Where do I get started? Are there any good books/sites I can visit to learn about creating one? What sort of technologies/standards should I get familiar with?

Thanks

Duplicated from

how-do-you-set-up-an-api-key-system-for-your-website

how-should-i-build-a-good-web-api

how-can-i-make-an-api-for-my-php-script

flag

60% accept rate
Good question, I look forward to the answers. – Toytown Mafia Oct 1 '08 at 9:36
stackoverflow.com/questions/33728/… Duplicate – Daok Oct 1 '08 at 19:29
Closed and I included 3 links to duplicate link with the same subject. – Daok Oct 14 '08 at 20:43
@Daok I think that this question has much better responses that the others. – Mark Biek Oct 14 '08 at 20:47
Answer should go in the other thread, not this one. This is close. – Daok Oct 14 '08 at 20:53
show 6 more comments

closed as exact duplicate by Daok Oct 14 '08 at 20:54

9 Answers

vote up 1 vote down

I answered a similar question a few days ago.

[Edit]Version your API early on. I learned the hard way as some apps based on the API updates.[/Edit]

link|flag
vote up 2 vote down

You create an API with the public keyword.

link|flag
That was a funny remark. :-) – Till Oct 10 '08 at 11:17
vote up 0 vote down

The first thing I usually like to do when creating an API is to consider how I want to use the API if someone else had created it. For this I write numerous examples of how the API will be used. Of course this is only one aspect of design but it is usually the first step I take after the initial brainstorming session. It helps to solidify exactly what the requirements and feature set of the API should be. It also helps you to see the perspective of the coders that will need to use the API. And finally it gives you example code (and maybe unit-testable code) that you can use to have your initial API design peer reviewed.

link|flag
vote up 4 vote down

Just a few general comments.

Think about your audience.

  • REST APIs are pretty hip but require basic understanding of HTTP.
  • XMLRPC APIs are not as hip but there are clients in every language (even AppleScript :)).

In general I second REST as a choice because HTTP (beyond the learning curve) is easy to understand once you get it. It sometimes takes a while for people to realize that beside GET and POST there are more verbs (PUT, DELETE, HEAD). The O'Reilly book other people mentioned is a really great resource, or even the wikipedia entry on REST is a good start.

[BTW people, you may laugh ("REST is so easy!") but I am dealing with a client right now who put some .net developer ("I have seen HTTP in vb.net before!") on their integration project and despite us providing docs and explaining it step by step he does not get REST at all. I have to google for code snippets because he is unable to create a httpclient in his language of choice. And even then he sends data in GET, while we require PUT, and stuff like that. So I am just adding this to backup my concerns here.]

Just make sure that you do not shortcut and call your API REST while it is not RESTful - just like Flickr. Despite their claim to REST, their API is not.

Also, in the progress, (especially when you settle on REST) have a look at JSON for a transport format. It's very lightweight and most languages have tools to serialize data to JSON and to bring it back.

link|flag
vote up 0 vote down

I made a webservice in PHP as well; Looking at the Flickr API helped me a lot with understanding how to set it up and what to use. I went for a REST method in combination with XML/JSON/POSTDATA, I like JSON the most because it intergrates quite nicely with javascript and can be easily transformed to an array in PHP(5).

link|flag
The Flickr API is an example of how to not build a REST API. It is anything but REST. – Till Oct 1 '08 at 10:43
True, but it gives a good idea of what transport layers you can use for your webservice; I agree, the REST implementation of Flickr is poor but it gives a nice idea. – D4V360 Oct 1 '08 at 19:32
vote up 3 vote down

Assuming you're talking about a public-access API, you probably want to go with REST (versus some other protocol like SOAP/WSDL or XML-RPC). REST is definitely the current "best practice" for this kind of API.

O'Reilly's RESTful Web Services is a great book about how to build web services that follow REST principles (and why exactly you would want to in the first place).

For PHP, Zend Framework's Zend_Rest library is a good one to check out for creating both REST clients and servers.

link|flag
I don't agree, Zend_Rest does not really help you to build a REST API according to what REST really is. If you scan the Zend Framework mailinglists, you can dig up some threads that back up my claim. – Till Oct 1 '08 at 10:46
vote up 3 vote down

In addition to the good articles posted above, the single best piece of advice I could give is to pick a model and stick with it throughout the design. Don't throw around some REST here, RPC there, with a dash of some custom protocols mixed in. Pick one and be consistent throughout the entire API.

link|flag
vote up 7 vote down

I asked a similar question, and got some good responses.

link|flag
vote up 7 vote down

This is a question you can answer by googling for "API Design", here's what seem to be good starting points:

How to Design a Good API and Why it Matters (PDF, Presentation)

On API Design Guidelines

link|flag

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