throws TwitterException;
/**
* Returns the members of the specified list.
<<<<<<< HEAD
throws TwitterException;
=======
* @since Twitter4J 3.0.2
*/
PagableResponseList getUserListMembers(String ownerScreenName, String slug, long cursor)
* This method calls https://api.twitter.com/1.1/lists/members.json
*
* @param ownerScreenName The screen name of the user who owns the list being requested by a slug.
* @param slug slug of the list
* @param count Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
* @param cursor 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.
* @return the members of the specified list.
* @throws TwitterException when Twitter service or network is unavailable
* @see GET lists/members | Twitter Developers
* @since Twitter4J 4.0.4
*/
PagableResponseList getUserListMembers(String ownerScreenName, String slug, int count, long cursor)
throws TwitterException;
/**
* Returns the members of the specified list.
* This method calls https://api.twitter.com/1.1/lists/members.json
*
* @param ownerScreenName The screen name of the user who owns the list being requested by a slug.
* @param slug slug of the list
* @param count Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
* @param cursor 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.
* @param skipStatus When set to either true, t or 1 statuses will not be included in the returned user objects.
* @return the members of the specified list.
* @throws TwitterException when Twitter service or network is unavailable
* @see GET lists/members | Twitter Developers
* @since Twitter4J 4.0.4
*/
PagableResponseList getUserListMembers(String ownerScreenName, String slug, int count, long cursor, boolean skipStatus)
throws TwitterException;
>>>>>>> 55d97f1d59f1d7159195cb3b81adcb69364e506a
/**
* Adds a member to a list. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members. |