Package | Description |
---|---|
twitter4j |
general package for Twitter4J
|
twitter4j.api |
APIs represents Twitter API resources
|
Modifier and Type | Method and Description |
---|---|
Paging |
Paging.count(int count) |
Paging |
Paging.maxId(long maxId) |
Paging |
Paging.sinceId(long sinceId) |
Modifier and Type | Method and Description |
---|---|
ResponseList<DirectMessage> |
DirectMessagesResources.getDirectMessages(Paging paging)
Deprecated.
use
DirectMessagesResources.getDirectMessages(int) instead |
ResponseList<Status> |
FavoritesResources.getFavorites(long userId,
Paging paging)
Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
|
ResponseList<Status> |
FavoritesResources.getFavorites(Paging paging)
Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
|
ResponseList<Status> |
FavoritesResources.getFavorites(String screenName,
Paging paging)
Returns the 20 most recent favorite statuses for the authenticating user or user specified by the ID parameter in the requested format.
|
ResponseList<Status> |
TimelinesResources.getHomeTimeline(Paging paging)
Returns the 20 most recent statuses, including retweets, posted by the authenticating user and that user's friends.
|
ResponseList<Status> |
TimelinesResources.getMentionsTimeline(Paging paging)
Returns the 20 most recent mentions (tweets containing a users's @screen_name) for the authenticating user.
The timeline returned is the equivalent of the one seen when you view your mentions on twitter.com. This method can only return up to 800 tweets. See Working with Timelines for instructions on traversing timelines. |
ResponseList<Status> |
TimelinesResources.getRetweetsOfMe(Paging paging)
Returns the 20 most recent tweets of the authenticated user that have been retweeted by others.
|
ResponseList<DirectMessage> |
DirectMessagesResources.getSentDirectMessages(Paging paging)
Deprecated.
use
DirectMessagesResources.getDirectMessages(int) instead |
ResponseList<Status> |
ListsResources.getUserListStatuses(long listId,
Paging paging)
Show tweet timeline for members of the specified list.
|
ResponseList<Status> |
ListsResources.getUserListStatuses(long ownerId,
String slug,
Paging paging)
Show tweet timeline for members of the specified list.
|
ResponseList<Status> |
ListsResources.getUserListStatuses(String ownerScreenName,
String slug,
Paging paging)
Show tweet timeline for members of the specified list.
|
ResponseList<Status> |
TimelinesResources.getUserTimeline(long userId,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user.
|
ResponseList<Status> |
TimelinesResources.getUserTimeline(Paging paging)
Returns the 20 most recent statuses posted from the authenticating user.
|
ResponseList<Status> |
TimelinesResources.getUserTimeline(String screenName,
Paging paging)
Returns the 20 most recent statuses posted from the authenticating user.
|
Copyright © 2018. All rights reserved.