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.
Similar Posts:
- Quick Tip: Using an authenticated proxy server with Ivy
- Rerouting Spring Security 2 Login Page Through a Spring Controller
- [Tutorial] Amazon SOAP Product Advertising API from Java – Including Signing of Requests with WS-Security
- 5 Minute Guide to Spring Security
- Corporate Blog Post: Building a Collaborative Enterprise: Twitter (Part 1)


