Trying to get the date of each twitter favorite Using the following code:
TwitterFactory tf = new TwitterFactory(cb.build()); Twitter twitter = tf.getInstance(); for (Status rt : twitter.getFavorites()) { System.out.println(rt); }
but it returns a Status object with the data of the tweet and just the count of the favorite on that tweet