REST

Sam Rose's picture

delicious/help/api

Here is an idea:

We use existing delicious API.

Check out these URL's:

https://api.del.icio.us/v1/posts/suggest?&url=http://smartmobs.com

the above will let you employ the same tag recommender that is used inside of delicious anywhere

https://api.del.icio.us/v1/posts/add?&url=http://socialsynergyweb.org/cu...

The above will add (or should add) a post to delicious, and pass in tags, description, etc

Sam Rose's picture

API - Facebook Developers Wiki

The API uses a REST-like interface. This means that our Facebook method calls are made over the internet by sending HTTP GET or POST requests to the Facebook API REST server . Nearly any computer language can be used to communicate over HTTP with the REST server.

Sam Rose's picture

API - MediaWiki

The goal of this API (Application Programming Interface) is to provide direct, high-level access to the data contained in the MediaWiki databases. Client programs can use the API to login, get data, and post changes. The API supports thin web-based JavaScript clients, such as Navigation popups or LiveRC, end-user applications (such as vandal fighter), and can be accessed by another web site (tool server's utilities).

All output is available in a wide range of formats.

Sam Rose's picture

Twitter API Wiki / Things Every Developer Should Know

8) A command line is all you need to use the Twitter API

If your system has curl (and it should!), you’ve already got a great way to poke around the Twitter API. Here are some examples:

* Get the public timeline in RSS format, unauthenticated: curl http://twitter.com/statuses/public_timeline.rss
* Get updates from users you follow in XML, authenticated: curl -u username:password http://twitter.com/statuses/friends_timeline.xml
* See just the headers for that last request: curl --head -u username:password http://twitter.com/statuses/friends_timeline.xml

Syndicate content