public interface FriendsFollowersMethods
Modifier and Type | Method and Description |
---|---|
IDs |
getFollowersIDs(long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
IDs |
getFollowersIDs(long userId,
long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
IDs |
getFollowersIDs(java.lang.String screenName,
long cursor)
Returns an array of numeric IDs for every user the specified user is followed by.
|
IDs |
getFriendsIDs(long cursor)
Returns an array of numeric IDs for every user the authenticating user is following.
|
IDs |
getFriendsIDs(long userId,
long cursor)
Returns an array of numeric IDs for every user the specified user is following.
|
IDs |
getFriendsIDs(java.lang.String screenName,
long cursor)
Returns an array of numeric IDs for every user the specified user is following.
|
IDs getFriendsIDs(long cursor) throws TwitterException
cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailableIDs getFriendsIDs(long userId, long cursor) throws TwitterException
userId
- Specifies the ID of the user for whom to return the friends list.cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailableIDs getFriendsIDs(java.lang.String screenName, long cursor) throws TwitterException
screenName
- Specifies the screen name of the user for whom to return the friends list.cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailableIDs getFollowersIDs(long cursor) throws TwitterException
cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailableIDs getFollowersIDs(long userId, long cursor) throws TwitterException
userId
- Specifies the ID of the user for whom to return the followers list.cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailableIDs getFollowersIDs(java.lang.String screenName, long cursor) throws TwitterException
screenName
- Specifies the screen name of the user for whom to return the followers list.cursor
- Causes the list of connections to be broken into pages of no more than 5000 IDs at a time. The number of IDs returned is not guaranteed to be 5000 as suspended users are filterd out after connections are queried. TwitterException
- when Twitter service or network is unavailable