vote up 7 vote down star
2

The twitter API site lists 3 java twitter libaries.

Do you know others? What are your experiences in support, ease of use, stability, community, etc.

flag

I am about to take the plunge, and would also like a good comparison. – Chris Quenelle May 22 at 22:23

4 Answers

vote up 4 vote down check

I think Twitter4j is good one it is most upto date API

link|flag
vote up 4 vote down

I just took a look at them.

JTwitter definitely looks like the weakest of the three. It doesn't appear to have been updated lately, doesn't cover much of the Twitter API, and doesn't appear to have any releases besides the initial one. On the upside, it's LPGL licensed, comes packaged with what little extra code it needs, and looks small and simple to understand.

The other two, java-twitter and Twtter4J look much closer in quality. Both cover the core API, and both have all the accouterments of normal open-source projects: publicly available source code repository, on-line docs, active mailing lists, and recent development activity.

However, Twitter4J looks to be the leader. From the docs, its API coverage appears to be more complete. The mailing list is definitely more active. The docs are much better. And most importantly to me, the releases have been more frequent. java-twitter has one release up, the "0.9-SNAPSHOT" release about 4 months ago. Twitter4J has had several releases in that time period, including 2.0.0 and incremental releases up through 2.0.8, fixing issues and adding support for new Twitter APIs.

I'm going to start with Twitter4J; if you don't hear back, assume it was just great for me.

link|flag
1  
After a month of poking, Twitter4J seems pretty swell. I'm entirely in favor of it. – William Pietri Jul 13 at 7:36
vote up 0 vote down

I have selected Twitter4j because a lot of people are working on it. And its easy to find out some contents on Internet about it.

link|flag
vote up 0 vote down

I use Twitter4J and have yet to have a problem with it. I actually like it a lot.

The OAuth example they give on their website is the biggest nuisance -- it's not helpful. Here's my OAuthServlet code if you're interested (or anyone else). I know this question is rather old, so I'm putting it in here more for search results.

package com.appspot.yourmomstwat;

import java.io.PrintWriter;
import java.io.IOException;
import javax.servlet.http.HttpServlet;
import javax.servlet.http.HttpServletResponse;
import javax.servlet.http.HttpServletRequest;
import javax.servlet.http.HttpSession;
import twitter4j.*;
import twitter4j.http.*;


@SuppressWarnings("serial")
public class OAuthServlet extends HttpServlet {

    public void doGet(HttpServletRequest req, HttpServletResponse resp) throws IOException {

        HttpSession sess = req.getSession(true);
        RequestToken requestToken = (RequestToken) sess.getAttribute("requestToken");



    	if (sess.getAttribute("twitter_user_id") != null) {
    		resp.setContentType("text/plain");
    		PrintWriter out = resp.getWriter();
    		if (req.getRequestURI().indexOf("logout") > 3) {
        		sess.removeAttribute("twitter_user_id");
        		out.println("You're now logged out.");
        	} else {
        		out.println("You're already logged in!");
        	}
        } else if (req.getRequestURI().indexOf("callback") > 3 && req.getParameter("oauth_token").length() > 0 && requestToken != null) {

        	handleCallback(req, resp, sess);
        	if (sess.getAttribute("oauth_previous") != null) {
        		resp.sendRedirect((String) sess.getAttribute("oauth_previous"));
        		sess.removeAttribute("oauth_previous");
        	}

    	} else {

    		sendToTwitter(resp, sess);
    		sess.setAttribute("oauth_previous", req.getHeader("Referer"));
    	}

    }

    private void sendToTwitter(HttpServletResponse resp, HttpSession sess) throws IOException {

        RequestToken requestToken = (RequestToken) sess.getAttribute("requestToken");

        try {
    	    Twitter twitter = new TwitterCnx().registerOAuth().get();

    		requestToken = twitter.getOAuthRequestToken();
    		sess.setAttribute("requestToken", requestToken);

    	    resp.sendRedirect(requestToken.getAuthorizationURL());


    	} catch (TwitterException e) {
    		PrintWriter out = resp.getWriter();
    		out.println(e.getStackTrace());
    	}
    }

    private void handleCallback(HttpServletRequest req, HttpServletResponse resp, HttpSession sess) throws IOException {

    	RequestToken requestToken = (RequestToken) sess.getAttribute("requestToken");
    	sess.removeAttribute("requestToken");
    	String secret = req.getParameter("oauth_token");

    	resp.setContentType("text/plain");
    	PrintWriter out = resp.getWriter();

        try {
    		Twitter t = new TwitterCnx().registerOAuth().get();

    		AccessToken accessToken = t.getOAuthAccessToken(requestToken.getToken(), secret);
        	long id = (long) t.verifyCredentials().getId();

    		storeAccessToken(id, accessToken,sess);
    		sess.setAttribute("twitter_user_id", id);

    		out.println("You're now logged in!");

    	} catch (TwitterException e) {
    		out.println("Something went wrong. Sorry about that. Please try again.");
    	}

    }



    private void storeAccessToken(Long id, AccessToken at, HttpSession sess) {
    	//you probably want to persist this somewhere other than in sessions.
    	sess.setAttribute("secret", at.getTokenSecret() );
    	sess.setAttribute("token", at.getToken());
    	//also, don't forget to persist the user id alongside the token.
    }
}

I use the class TwitterCnx as a wrapper for twitter4j.Twitter. TwitterCnx defines my OAuth consumer stuff and returns a Twitter object. It's a final class with static methods so I don't produce more than one Twitter object per app instance.

link|flag

Your Answer

Get an OpenID
or

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