Twitter4J Changelog

What's new in Twitter4J 2.2.5 Snapshot

Sep 15, 2011
  • Rebuild your project first!
  • Version 2.2.0 is slightly incompatible with older versions. Projects that have been using older versions are required to be rebuilt before using Version 2.2.0.
  • migration of twitter4j.http.* package (TFJ-559)
  • classes in twitter4j.http.* has been migrated to twitter4j.auth.*.
  • retirement of Basic authentication (TFJ-560)
  • TwitterFactory.getInstance(screenName,password) was retired. To get an access token using xAuth flow, use Twitter.getOAuthAccessToken(screenName, password). getOAuthAuthorizedInstance(Authorization) was retired, use getInstance(Authorization) instead.
  • introduction of new artifacts for async API and streaming API (TFJ-345)
  • Async API has been migrated to twitter4j-async artifact (depending on twitter4j-core), Streaming API support has been migrated to twitter4j-stream artifact (depending on twitter4j-async).
  • JSON store is disabled by defalt (TFJ-562)
  • You can get the raw json form of response from the API usingDataObjectFactory#getRawJSON(). But as of version 2.2.0, the feature is disabled by default. You can enable the feature by setting jsonStoreEnabled configuration parameter to true in twitter4j.properties.
  • licensing (TFJ-446)
  • Note that Twitter4J is released under Apache License 2.0 from version 2.2.0.

New in Twitter4J 2.0.0 (Apr 25, 2009)

  • Bug
  • [TFJ-95] - getFriends(String id) and getFriends(String id, int page) return authenticating user's friends' timeline instead
  • Improvement
  • [TFJ-103] - User element is out of sync
  • [TFJ-104] - UserWithStatus element is out of sync
  • [TFJ-105] - show method should return ExtendedUser instead of Status
  • [TFJ-106] - unescape HTML entities
  • [TFJ-108] - deprecate QueryResult#getTotal()
  • New Feature
  • [TFJ-49] - support update_profile_colors method
  • [TFJ-75] - support social graph methods
  • [TFJ-83] - OAuth support
  • [TFJ-96] - support since_id with getUserTimeline
  • [TFJ-97] - support since_id with getDirectMessages and getSentDirectMessages