|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
public interface ListMembersMethods
| Method Summary | |
|---|---|
UserList |
addUserListMember(int listId,
long userId)
Adds a member to a list. |
UserList |
addUserListMembers(int listId,
long[] userIds)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. |
UserList |
addUserListMembers(int listId,
String[] screenNames)
Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. |
UserList |
deleteUserListMember(int listId,
long userId)
Removes the specified member from the list. |
PagableResponseList<User> |
getUserListMembers(int listId,
long cursor)
Returns the members of the specified list. |
User |
showUserListMembership(int listId,
long userId)
Check if a user is a member of the specified list. This method calls http://api.twitter.com/1/lists/members/show.json |
| Method Detail |
|---|
PagableResponseList<User> getUserListMembers(int listId,
long cursor)
throws TwitterException
listId - The id of the listcursor - Breaks the results into pages. A single page contains 20 lists. 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.
TwitterException - when Twitter service or network is unavailable
UserList addUserListMember(int listId,
long userId)
throws TwitterException
listId - The id of the list.userId - The id of the user to add as a member of the list.
TwitterException - when Twitter service or network is unavailable
UserList addUserListMembers(int listId,
long[] userIds)
throws TwitterException
listId - The id of the list.userIds - The array of ids of the user to add as member of the list. up to 100 are allowed in a single request.
TwitterException
UserList addUserListMembers(int listId,
String[] screenNames)
throws TwitterException
listId - The id of the list.screenNames - The array of screen names of the user to add as member of the list. up to 100 are allowed in a single request.
TwitterException
UserList deleteUserListMember(int listId,
long userId)
throws TwitterException
listId - The id of the list.userId - The screen name of the member you wish to remove from the list.
TwitterException - when Twitter service or network is unavailable
User showUserListMembership(int listId,
long userId)
throws TwitterException
listId - The id of the list.userId - The id of the user who you want to know is a member or not of the specified list.
TwitterException - when Twitter service or network is unavailable
, or the user is not a member of the specified list(TwitterException.getStatusCode() returns 404 in that case.)
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||