History | Log In      
Issue Details (XML | Word | Printable)

Key: TFJ-12
Type: New Feature
Status: Closed
Resolution: Fixed
Priority: Major
Assignee: Yusuke Yamamoto
Reporter: Yusuke Yamamoto
Votes: 0
Watchers: 0
Operations

If you were logged in you would be able to see more operations.
Twitter4J

support for pagination parameter

Created: 10/Jul/07 11:36 AM   Updated: 16/Jul/07 02:09 PM
Component/s: Core
Affects Version/s: None
Fix Version/s: 1.0.2


 Description  « Hide
friends_timeline, replies, direct_messages and sent method supports pagination parameter as of today.
http://groups.google.com/group/twitter-development-talk/web/api-documentation

 All   Comments   Change History   Subversion Commits      Sort Order:
Yusuke Yamamoto - [16/Jul/07 02:09 PM ]
-added following methods to Twitter class
public final synchronized List getFriendsTimelineByPage(int page)
public final synchronized List getFriendsTimelineByPage(String id,int page)
public final synchronized List getRepliesByPage(int page)
public final synchronized List getDirectMessagesByPage(int page)

-added following methods to AsyncTwitter class
public final synchronized void getFriendsTimelineByPageAsync(int page, TwitterListener listener)
public final synchronized void getFriendsTimelineByPageAsync(String id,int page, TwitterListener listener)
public final synchronized void getRepliesByPageAsync(int page,TwitterListener listener)
public final synchronized void getDirectMessagesByPageAsync(int page, TwitterListener listener)