twitter api

Ruby on Rails , PHP Add comments

another boring day. been reading about this twitter api. and decided to test a few :D.

fortunately i was able to make it work well some of them.

first thing i tried was using cURL to update status in twitter.

Posting Twitter status via cURL

curl --basic --user username:password --data status="I'm twittering with curl!" http://twitter.com/statuses/update.xml

isn't that cool? updating tweets via cli.

but i ddn't stop with that i decided to read more and found this very nice tutorial http://www.jaisenmathai.com/blog/2009/03/31/how-to-quickly-integrate-with-twitters-oauth-api-using-php/

after that i also googled for ruby on rails regarding twitter api. so i tried Sinitter

Sinitter is an application to demonstrate the integration of Twitter OAuth with sinatra and also serves as a live test for the twitter_oauth Ruby gem.

 

http://apiwiki.twitter.com/Twitter-API-Documentation for more info about twitter api.