public interface FriendsFollowersMethodsAsync
Modifier and Type | Method and Description |
---|---|
void |
getFollowersIDs()
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFollowersIDs(int userId)
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFollowersIDs(int userId,
long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFollowersIDs(long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFollowersIDs(java.lang.String screenName)
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFollowersIDs(java.lang.String screenName,
long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
void |
getFriendsIDs()
Returns an array of numeric IDs for every user the authenticating user is following.
|
void |
getFriendsIDs(int userId)
Returns an array of numeric IDs for every user the specified user is following.
|
void |
getFriendsIDs(int userId,
long cursor)
Returns an array of numeric IDs for every user the specified user is following.
|
void |
getFriendsIDs(long cursor)
Returns an array of numeric IDs for every user the authenticating user is following.
|
void |
getFriendsIDs(java.lang.String screenName)
Returns an array of numeric IDs for every user the specified user is following.
|
void |
getFriendsIDs(java.lang.String screenName,
long cursor)
Returns an array of numeric IDs for every user the specified user is following.
|
void getFriendsIDs()
void getFriendsIDs(long cursor)
cursor
- Specifies the page number of the results beginning at 1. A single page contains 5000 ids. This is recommended for users with large ID lists. If not provided all ids are returned.void getFriendsIDs(int userId)
userId
- Specifies the ID of the user for whom to return the friends list.void getFriendsIDs(int userId, long cursor)
userId
- Specifies the ID of the user for whom to return the friends list.cursor
- Specifies the page number of the results beginning at 1. A single page contains 5000 ids. This is recommended for users with large ID lists. If not provided all ids are returned.void getFriendsIDs(java.lang.String screenName)
screenName
- Specifies the screen name of the user for whom to return the friends list.void getFriendsIDs(java.lang.String screenName, long cursor)
screenName
- Specifies the screen name of the user for whom to return the friends list.cursor
- Specifies the page number of the results beginning at 1. A single page contains 5000 ids. This is recommended for users with large ID lists. If not provided all ids are returned.void getFollowersIDs()
void getFollowersIDs(long cursor)
cursor
- Breaks the results into pages. A single page contains 100 users. This is recommended for users who are followed by many other users. Provide a value of -1 to begin paging. Provide values as returned to in the response body's next_cursor and previous_cursor attributes to page back and forth in the list.void getFollowersIDs(int userId)
userId
- Specifies the ID of the user for whom to return the followers list.void getFollowersIDs(int userId, long cursor)
userId
- Specifies the ID of the user for whom to return the followers list.cursor
- Specifies the page number of the results beginning at 1. A single page contains 5000 ids. This is recommended for users with large ID lists. If not provided all ids are returned.void getFollowersIDs(java.lang.String screenName)
screenName
- Specifies the screen name of the user for whom to return the followers list.void getFollowersIDs(java.lang.String screenName, long cursor)
screenName
- Specifies the screen name of the user for whom to return the followers list.cursor
- Specifies the page number of the results beginning at 1. A single page contains 5000 ids. This is recommended for users with large ID lists. If not provided all ids are returned.