Nov 19
[Tutorial] Twittering from Java with Twitter4J
Really, this is so easy it’s almost not worthy of a blog post. Twitter4J is a tiny library wrapping interaction with Twitter APIs.
Creating a new tweet is as simple as:
Twitter twitter = new Twitter("username","password"); Status status = twitter.update(title);
The Twitter4J page has a series of simple examples covering timelines and direct messages. Great job and thanks to Yusuke Yamamoto, the author.



December 1st, 2010 at 1:57 am
you could be the only person on the earth who understand this blog.
December 9th, 2010 at 11:09 pm
This method is no longer support by Twitter.