Package | Description |
---|---|
org.springframework.social.twitter.api |
Spring Social's Service API for Twitter
|
Modifier and Type | Method and Description |
---|---|
Tweet |
Tweet.getRetweetedStatus() |
Tweet |
TimelineOperations.getStatus(long tweetId)
Returns a single tweet.
|
Tweet |
TimelineOperations.updateStatus(String status)
Updates the user's status.
|
Tweet |
TimelineOperations.updateStatus(String status,
org.springframework.core.io.Resource photo)
Updates the user's status along with a picture.
|
Tweet |
TimelineOperations.updateStatus(String status,
org.springframework.core.io.Resource photo,
StatusDetails details)
Updates the user's status, including a picture and additional metadata concerning the status.
|
Tweet |
TimelineOperations.updateStatus(String status,
StatusDetails details)
Updates the user's status, including additional metadata concerning the status.
|
Modifier and Type | Method and Description |
---|---|
List<Tweet> |
TimelineOperations.getFavorites()
Retrieves the 20 most recent tweets favorited by the authenticated user.
|
List<Tweet> |
TimelineOperations.getFavorites(int pageSize)
Retrieves tweets favorited by the authenticated user.
|
List<Tweet> |
TimelineOperations.getFavorites(long userId)
Retrieves the 20 most recent tweets favorited by the specified user.
|
List<Tweet> |
TimelineOperations.getFavorites(long userId,
int pageSize)
Retrieves tweets favorited by the specified user.
|
List<Tweet> |
TimelineOperations.getFavorites(String screenName)
Retrieves the 20 most recent tweets favorited by the specified user.
|
List<Tweet> |
TimelineOperations.getFavorites(String screenName,
int pageSize)
Retrieves tweets favorited by the specified user.
|
List<Tweet> |
TimelineOperations.getHomeTimeline()
Retrieves the 20 most recently posted tweets, including retweets, from
the authenticating user's home timeline.
|
List<Tweet> |
TimelineOperations.getHomeTimeline(int pageSize)
Retrieves tweets, including retweets, from the authenticating user's home timeline.
|
List<Tweet> |
TimelineOperations.getHomeTimeline(int pageSize,
long sinceId,
long maxId)
Retrieves tweets, including retweets, from the authenticating user's home timeline.
|
List<Tweet> |
ListOperations.getListStatuses(long listId)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
ListOperations.getListStatuses(long listId,
int pageSize)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
ListOperations.getListStatuses(long listId,
int pageSize,
long sinceId,
long maxId)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
ListOperations.getListStatuses(String screenName,
String listSlug)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
ListOperations.getListStatuses(String screenName,
String listSlug,
int pageSize)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
ListOperations.getListStatuses(String screenName,
String listSlug,
int pageSize,
long sinceId,
long maxId)
Retrieves the timeline tweets for the given user list.
|
List<Tweet> |
TimelineOperations.getMentions()
Retrieve the 20 most recent tweets that mention the authenticated user.
|
List<Tweet> |
TimelineOperations.getMentions(int pageSize)
Retrieve tweets that mention the authenticated user.
|
List<Tweet> |
TimelineOperations.getMentions(int pageSize,
long sinceId,
long maxId)
Retrieve tweets that mention the authenticated user.
|
List<Tweet> |
TimelineOperations.getRetweets(long tweetId)
Retrieves up to 100 retweets of a specific tweet.
|
List<Tweet> |
TimelineOperations.getRetweets(long tweetId,
int count)
Retrieves retweets of a specific tweet.
|
List<Tweet> |
TimelineOperations.getRetweetsOfMe()
Retrieve the 20 most recent tweets of the authenticated user that have been retweeted by others.
|
List<Tweet> |
TimelineOperations.getRetweetsOfMe(int page,
int pageSize)
Retrieve tweets of the authenticated user that have been retweeted by others.
|
List<Tweet> |
TimelineOperations.getRetweetsOfMe(int page,
int pageSize,
long sinceId,
long maxId)
Retrieve tweets of the authenticated user that have been retweeted by others.
|
List<Tweet> |
SearchResults.getTweets()
Returns the list of matching
Tweet s |
List<Tweet> |
TimelineOperations.getUserTimeline()
Retrieves the 20 most recent tweets posted by the authenticating user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(int pageSize)
Retrieves tweets posted by the authenticating user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(int pageSize,
long sinceId,
long maxId)
Retrieves tweets posted by the authenticating user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(long userId)
Retrieves the 20 most recent tweets posted by the given user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(long userId,
int pageSize)
Retrieves tweets posted by the given user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(long userId,
int pageSize,
long sinceId,
long maxId)
Retrieves tweets posted by the given user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(String screenName)
Retrieves the 20 most recent tweets posted by the given user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(String screenName,
int pageSize)
Retrieves tweets posted by the given user.
|
List<Tweet> |
TimelineOperations.getUserTimeline(String screenName,
int pageSize,
long sinceId,
long maxId)
Retrieves tweets posted by the given user.
|
Modifier and Type | Method and Description |
---|---|
void |
Tweet.setRetweetedStatus(Tweet tweet) |
Constructor and Description |
---|
SearchResults(List<Tweet> tweets,
SearchMetadata metaData) |
SearchResults(List<Tweet> tweets,
SearchMetadata metaData,
boolean lastPage) |
Copyright © 2018. All rights reserved.