| Package | Description |
|---|---|
| org.agorava.twitter | |
| org.agorava.twitter.model |
| Modifier and Type | Method and Description |
|---|---|
TwitterProfile |
TwitterBlockService.block(long userId)
Blocks a user.
|
TwitterProfile |
TwitterBlockService.block(String screenName)
Blocks a user.
|
TwitterProfile |
TwitterFriendService.disableNotifications(long userId)
Disable mobile device notifications from Twitter for the specified user.
|
TwitterProfile |
TwitterFriendService.disableNotifications(String screenName)
Disable mobile device notifications from Twitter for the specified user.
|
TwitterProfile |
TwitterFriendService.enableNotifications(long userId)
Enable mobile device notifications from Twitter for the specified user.
|
TwitterProfile |
TwitterFriendService.enableNotifications(String screenName)
Enable mobile device notifications from Twitter for the specified user.
|
TwitterProfile |
TwitterUserService.getUserProfile()
Retrieves the authenticated user's Twitter profile details.
|
TwitterProfile |
TwitterUserService.getUserProfile(long userId)
Retrieves a specific user's Twitter profile details.
|
TwitterProfile |
TwitterUserService.getUserProfile(String screenName)
Retrieves a specific user's Twitter profile details.
|
TwitterProfile |
TwitterBlockService.unblock(long userId)
Unblocks a user.
|
TwitterProfile |
TwitterBlockService.unblock(String screenName)
Unblocks a user.
|
| Modifier and Type | Method and Description |
|---|---|
List<TwitterProfile> |
TwitterBlockService.getBlockedUsers()
Retrieves a list of users that the authenticating user has blocked.
|
List<TwitterProfile> |
TwitterBlockService.getBlockedUsers(int page,
int pageSize)
Retrieves a list of users that the authenticating user has blocked.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowers()
Retrieves a list of up to 5000 users that the authenticated user is being followed by Note that this method make multiple
calls to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowers(long userId)
Retrieves a list of up to 5000 users that the given user is being followed by Note that this method make multiple calls
to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowers(String screenName)
Retrieves a list of up to 5000 users that the given user is being followed by Note that this method make multiple calls
to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowersInCursor(long cursor)
Retrieves a list of up to 5000 users that the authenticated user is being followed by Note that this method make multiple
calls to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowersInCursor(long userId,
long cursor)
Retrieves a list of up to 5000 users that the given user is being followed by Note that this method make multiple calls
to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFollowersInCursor(String screenName,
long cursor)
Retrieves a list of up to 5000 users that the given user is being followed by Note that this method make multiple calls
to Twitter's REST API (one call to get a list of the follower IDs and one call for every 100 followers).
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriends()
Retrieves a list of up to 5000 users that the authenticated user follows.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriends(long userId)
Retrieves a list of up to 5000 users that the given user follows.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriends(String screenName)
Retrieves a list of up to 5000 users that the given user follows.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriendsInCursor(long cursor)
Retrieves a list of up to 5000 users that the authenticated user follows.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriendsInCursor(long userId,
long cursor)
Retrieves a list of up to 5000 users that the given user follows.
|
CursoredList<TwitterProfile> |
TwitterFriendService.getFriendsInCursor(String screenName,
long cursor)
Retrieves a list of up to 5000 users that the given user follows.
|
List<TwitterProfile> |
TwitterTimelineService.getRetweetedBy(long id)
Retrieves the profiles of up to 100 users how have retweeted a specific tweet.
|
List<TwitterProfile> |
TwitterTimelineService.getRetweetedBy(long tweetId,
int page,
int pageSize)
Retrieves the profiles of users how have retweeted a specific tweet.
|
List<TwitterProfile> |
TwitterUserService.getSuggestions(String slug)
Retrieves a list of suggestions of users to follow for a given category.
|
List<TwitterProfile> |
TwitterUserService.getUsers(String... userIds)
Retrieves a list of Twitter profiles for the given list of user IDs.
|
List<TwitterProfile> |
TwitterUserService.getUsersByName(String... screenNames)
Retrieves a list of Twitter profiles for the given list of screen names.
|
List<TwitterProfile> |
TwitterUserService.searchForUsers(String query)
Searches for up to 20 users that match a given query.
|
List<TwitterProfile> |
TwitterUserService.searchForUsers(String query,
int page,
int pageSize)
Searches for users that match a given query.
|
| Modifier and Type | Method and Description |
|---|---|
TwitterProfile |
DirectMessage.getRecipient() |
TwitterProfile |
DirectMessage.getSender() |
| Constructor and Description |
|---|
DirectMessage(long id,
String text,
TwitterProfile sender,
TwitterProfile recipient,
Date createdAt) |
Copyright © 2013. All Rights Reserved.