パッケージ twitter4j.v1

インタフェース ListsResources


public interface ListsResources
  • メソッドの詳細

    • getUserLists

      ResponseList<UserList> getUserLists(String listOwnerScreenName) throws TwitterException
      List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user whose lists are being returned.
      This method calls https://api.twitter.com/1.1/lists.json
      パラメータ:
      listOwnerScreenName - The screen name of the list owner as returned to in the response body's next_cursor and previous_cursor attributes to page back and forth in the list.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • getUserLists

      ResponseList<UserList> getUserLists(String listOwnerScreenName, boolean reverse) throws TwitterException
      List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user whose lists are being returned.
      This method calls https://api.twitter.com/1.1/lists.json
      パラメータ:
      listOwnerScreenName - The screen name of the list owner as returned to in the response body's next_cursor and previous_cursor attributes to page back and forth in the list.
      reverse - Set this to true if you would like owned lists to be returned first
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserLists

      ResponseList<UserList> getUserLists(long listOwnerUserId) throws TwitterException
      List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user whose lists are being returned.
      This method calls https://api.twitter.com/1.1/lists.json
      パラメータ:
      listOwnerUserId - The id of the list owner
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • getUserLists

      ResponseList<UserList> getUserLists(long listOwnerUserId, boolean reverse) throws TwitterException
      List the lists of the specified user. Private lists will be included if the authenticated users is the same as the user whose lists are being returned.
      This method calls https://api.twitter.com/1.1/lists.json
      パラメータ:
      listOwnerUserId - The id of the list owner
      reverse - Set this to true if you would like owned lists to be returned first
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListStatuses

      ResponseList<Status> getUserListStatuses(long listId, Paging paging) throws TwitterException
      Show tweet timeline for members of the specified list.
      https://api.twitter.com/1/user/lists/list_id/statuses.json
      パラメータ:
      listId - The id of the list
      paging - controls pagination. Supports since_id, max_id, count and page parameters.
      戻り値:
      list of statuses for members of the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • getUserListStatuses

      ResponseList<Status> getUserListStatuses(long ownerId, String slug, Paging paging) throws TwitterException
      Show tweet timeline for members of the specified list.
      https://api.twitter.com/1/user/lists/list_id/statuses.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      paging - controls pagination. Supports since_id, max_id, count and page parameters.
      戻り値:
      list of statuses for members of the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • getUserListStatuses

      ResponseList<Status> getUserListStatuses(String ownerScreenName, String slug, Paging paging) throws TwitterException
      Show tweet timeline for members of the specified list.
      https://api.twitter.com/1.1/lists/statuses.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      paging - controls pagination. Supports since_id, max_id, count and page parameters.
      戻り値:
      list of statuses for members of the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • destroyUserListMember

      UserList destroyUserListMember(long listId, long userId) throws TwitterException
      Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy.json
      パラメータ:
      listId - The id of the list.
      userId - The screen name of the member you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • destroyUserListMember

      UserList destroyUserListMember(long listId, String screenName) throws TwitterException
      Removes the specified members from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy.json
      パラメータ:
      listId - The id of the list.
      screenName - The screen name of the member you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.6
      関連項目:
    • destroyUserListMembers

      UserList destroyUserListMembers(long listId, String[] screenNames) throws TwitterException
      Removes the specified members from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy_all.json
      パラメータ:
      listId - The id of the list.
      screenNames - The screen names of the members you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.6
      関連項目:
    • destroyUserListMembers

      UserList destroyUserListMembers(long listId, long[] userIds) throws TwitterException
      Removes the specified members from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy_all.json
      パラメータ:
      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.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.6
      関連項目:
    • destroyUserListMembers

      UserList destroyUserListMembers(String ownerScreenName, String slug, String[] screenNames) throws TwitterException
      Removes the specified members from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy_all.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      screenNames - The screen names of the members you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.6
      関連項目:
    • destroyUserListMember

      UserList destroyUserListMember(long ownerId, String slug, long userId) throws TwitterException
      Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The screen name of the member you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • destroyUserListMember

      UserList destroyUserListMember(String ownerScreenName, String slug, long userId) throws TwitterException
      Removes the specified member from the list. The authenticated user must be the list's owner to remove members from the list.
      This method calls https://api.twitter.com/1.1/lists/members/destroy.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The screen name of the member you wish to remove from the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(long cursor) throws TwitterException
      List the lists the authenticating user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when authorization is not enabled
      導入されたバージョン:
      Twitter4J 2.2.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(int count, long cursor) throws TwitterException
      List the lists the authenticating user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      count - The amount of results to return per page. No more than 1000 results will ever be returned in a single page.
      cursor - Breaks the results into pages. 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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when authorization is not enabled
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(long listMemberId, long cursor) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberId - The id of the list member
      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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(long listMemberId, int count, long cursor) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberId - The id of the list member
      count - The amount of results to return per page. No more than 1000 results will ever be returned in a single page.
      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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(String listMemberScreenName, long cursor) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberScreenName - The screen name of the list member
      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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(String listMemberScreenName, int count, long cursor) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberScreenName - The screen name of the list member
      count - The amount of results to return per page. No more than 1000 results will ever be returned in a single page.
      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.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(String listMemberScreenName, long cursor, boolean filterToOwnedLists) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberScreenName - The screen name of the list member
      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.
      filterToOwnedLists - Whether to return just lists the authenticating user owns, and the user represented by listMemberScreenName is a member of.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when filerToOwnedLists is true but authorization is not enabled
      導入されたバージョン:
      Twitter4J 2.2.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(String listMemberScreenName, int count, long cursor, boolean filterToOwnedLists) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberScreenName - The screen name of the list member
      count - The amount of results to return per page. No more than 1000 results will ever be returned in a single page.
      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.
      filterToOwnedLists - Whether to return just lists the authenticating user owns, and the user represented by listMemberScreenName is a member of.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when filerToOwnedLists is true but authorization is not enabled
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(long listMemberId, long cursor, boolean filterToOwnedLists) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberId - The id of the list member
      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.
      filterToOwnedLists - Whether to return just lists the authenticating user owns, and the user represented by listMemberId is a member of.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when filerToOwnedLists is true but authorization is not enabled
      導入されたバージョン:
      Twitter4J 2.2.4
      関連項目:
    • getUserListMemberships

      PagableResponseList<UserList> getUserListMemberships(long listMemberId, int count, long cursor, boolean filterToOwnedLists) throws TwitterException
      List the lists the specified user has been added to.
      This method calls https://api.twitter.com/1.1/lists/memberships.json
      パラメータ:
      listMemberId - The id of the list member
      count - The amount of results to return per page. No more than 1000 results will ever be returned in a single page.
      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.
      filterToOwnedLists - Whether to return just lists the authenticating user owns, and the user represented by listMemberId is a member of.
      戻り値:
      the list of lists
      例外:
      TwitterException - when Twitter service or network is unavailable
      IllegalStateException - when filerToOwnedLists is true but authorization is not enabled
      導入されたバージョン:
      Twitter4J 2.2.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long listId, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      listId - The id of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long listId, int count, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      listId - The id of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long listId, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      listId - The id of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long ownerId, String slug, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long ownerId, String slug, int count, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(long ownerId, String slug, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(String ownerScreenName, String slug, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(String ownerScreenName, String slug, int count, long cursor) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscribers

      PagableResponseList<User> getUserListSubscribers(String ownerScreenName, String slug, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the subscribers of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • createUserListSubscription

      UserList createUserListSubscription(long listId) throws TwitterException
      Make the authenticated user follow the specified list.
      This method calls https://api.twitter.com/1.1/list/subscribers/create.json
      パラメータ:
      listId - The id of the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • createUserListSubscription

      UserList createUserListSubscription(long ownerId, String slug) throws TwitterException
      Make the authenticated user follow the specified list.
      This method calls https://api.twitter.com/1.1/list/subscribers/create.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • createUserListSubscription

      UserList createUserListSubscription(String ownerScreenName, String slug) throws TwitterException
      Make the authenticated user follow the specified list.
      This method calls https://api.twitter.com/1.1/list/subscribers/create.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • showUserListSubscription

      User showUserListSubscription(long listId, long userId) throws TwitterException
      Check if the specified user is a subscriber of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers/show.json
      パラメータ:
      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.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • showUserListSubscription

      User showUserListSubscription(long ownerId, String slug, long userId) throws TwitterException
      Check if the specified user is a subscriber of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers/show.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user who you want to know is a member or not of the specified list.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • showUserListSubscription

      User showUserListSubscription(String ownerScreenName, String slug, long userId) throws TwitterException
      Check if the specified user is a subscriber of the specified list.
      This method calls https://api.twitter.com/1.1/lists/subscribers/show.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user who you want to know is a member or not of the specified list.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • destroyUserListSubscription

      UserList destroyUserListSubscription(long listId) throws TwitterException
      Unsubscribes the authenticated user form the specified list.
      This method calls https://api.twitter.com/1.1/subscribers/destroy.json
      パラメータ:
      listId - The id of the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • destroyUserListSubscription

      UserList destroyUserListSubscription(long ownerId, String slug) throws TwitterException
      Unsubscribes the authenticated user form the specified list.
      This method calls https://api.twitter.com/1.1/subscribers/destroy.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • destroyUserListSubscription

      UserList destroyUserListSubscription(String ownerScreenName, String slug) throws TwitterException
      Unsubscribes the authenticated user form the specified list.
      This method calls https://api.twitter.com/1.1/subscribers/destroy.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(long listId, long... userIds) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(long ownerId, String slug, long... userIds) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug 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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(String ownerScreenName, String slug, long... userIds) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug 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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(long listId, String... screenNames) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.7
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(long ownerId, String slug, String... screenNames) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug 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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • createUserListMembers

      UserList createUserListMembers(String ownerScreenName, String slug, String... screenNames) throws TwitterException
      Adds multiple members to a list, by specifying a comma-separated list of member ids or screen names. The authenticated user must own the list to be able to add members to it. Lists are limited to having 5000 members, and you are limited to adding up to 100 members to a list at a time with this method.
      This method calls https://api.twitter.com/1.1/lists/members/create_all.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug 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.
      戻り値:
      the list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • showUserListMembership

      User showUserListMembership(long listId, long userId) throws TwitterException
      Check if a user is a member of the specified list.

      This method calls https://api.twitter.com/1.1/lists/members/show.json
      パラメータ:
      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.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • showUserListMembership

      User showUserListMembership(long ownerId, String slug, long userId) throws TwitterException
      Check if a user is a member of the specified list.

      This method calls https://api.twitter.com/1.1/lists/members/show.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user who you want to know is a member or not of the specified list.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • showUserListMembership

      User showUserListMembership(String ownerScreenName, String slug, long userId) throws TwitterException
      Check if a user is a member of the specified list.

      This method calls https://api.twitter.com/1.1/lists/members/show.json
      パラメータ:
      ownerScreenName - Id The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user who you want to know is a member or not of the specified list.
      戻り値:
      the updated 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.)
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long listId, long cursor) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      listId - The id of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long listId, 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
      パラメータ:
      listId - The id of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long listId, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      listId - The id of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long ownerId, String slug, long cursor) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long ownerId, 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
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(long ownerId, String slug, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(String ownerScreenName, String slug, long cursor) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • getUserListMembers

      PagableResponseList<User> 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
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListMembers

      PagableResponseList<User> getUserListMembers(String ownerScreenName, String slug, int count, long cursor, boolean skipStatus) throws TwitterException
      Returns the members of the specified list.
      This method calls https://api.twitter.com/1.1/lists/members.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      count - Specifies the number of results to return per page. The default is 20, with a maximum of 5,000.
      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.
      skipStatus - When set to either true, t or 1 statuses will not be included in the returned user objects.
      戻り値:
      the members of the specified list.
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • createUserListMember

      UserList createUserListMember(long listId, long userId) throws TwitterException
      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.
      This method calls https://api.twitter.com/1.1/lists/members/create.json
      パラメータ:
      listId - The id of the list.
      userId - The id of the user to add as a member of the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • createUserListMember

      UserList createUserListMember(long ownerId, String slug, long userId) throws TwitterException
      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.
      This method calls https://api.twitter.com/1.1/lists/members/create.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user to add as a member of the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • createUserListMember

      UserList createUserListMember(String ownerScreenName, String slug, long userId) throws TwitterException
      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.
      This method calls https://api.twitter.com/1.1/lists/members/create.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      userId - The id of the user to add as a member of the list.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • destroyUserList

      UserList destroyUserList(long listId) throws TwitterException
      Deletes the specified list. Must be owned by the authenticated user.
      This method calls https://api.twitter.com/1.1/lists/destroy.json
      パラメータ:
      listId - The id of the list to delete
      戻り値:
      the deleted list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • destroyUserList

      UserList destroyUserList(long ownerId, String slug) throws TwitterException
      Deletes the specified list. Must be owned by the authenticated user.
      This method calls https://api.twitter.com/1.1/lists/destroy.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the deleted list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • destroyUserList

      UserList destroyUserList(String ownerScreenName, String slug) throws TwitterException
      Deletes the specified list. Must be owned by the authenticated user.
      This method calls https://api.twitter.com/1.1/lists/destroy.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the deleted list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • updateUserList

      UserList updateUserList(long listId, String newListName, boolean isPublicList, String newDescription) throws TwitterException
      Updates the specified list.
      This method calls https://api.twitter.com/1.1/lists/update.json
      パラメータ:
      listId - The id of the list to update.
      newListName - What you'd like to change the list's name to.
      isPublicList - Whether your list is public or private. Optional. Values can be public or private. Lists are public by default if no mode is specified.
      newDescription - What you'd like to change the list description to.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • updateUserList

      UserList updateUserList(long ownerId, String slug, String newListName, boolean isPublicList, String newDescription) throws TwitterException
      Updates the specified list.
      This method calls https://api.twitter.com/1.1/lists/update.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      newListName - What you'd like to change the list's name to.
      isPublicList - Whether your list is public or private. Optional. Values can be public or private. Lists are public by default if no mode is specified.
      newDescription - What you'd like to change the list description to.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • updateUserList

      UserList updateUserList(String ownerScreenName, String slug, String newListName, boolean isPublicList, String newDescription) throws TwitterException
      Updates the specified list.
      This method calls https://api.twitter.com/1.1/lists/update.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      newListName - What you'd like to change the list's name to.
      isPublicList - Whether your list is public or private. Optional. Values can be public or private. Lists are public by default if no mode is specified.
      newDescription - What you'd like to change the list description to.
      戻り値:
      the updated list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • createUserList

      UserList createUserList(String listName, boolean isPublicList, String description) throws TwitterException
      Creates a new list for the authenticated user. Accounts are limited to 20 lists.
      This method calls https://api.twitter.com/1.1/lists/create.json
      パラメータ:
      listName - The name of the list you are creating. Required.
      isPublicList - set true if you wish to make a public list
      description - The description of the list you are creating. Optional.
      戻り値:
      the list that was created
      例外:
      TwitterException - when Twitter service or network is unavailable, or the authenticated user already has 20 lists(TwitterException.getStatusCode() == 403).
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • showUserList

      UserList showUserList(long listId) throws TwitterException
      Show the specified list. Private lists will only be shown if the authenticated user owns the specified list.
      This method calls https://api.twitter.com/1.1/lists/show.json
      パラメータ:
      listId - The id of the list to show
      戻り値:
      the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.2.3
      関連項目:
    • showUserList

      UserList showUserList(long ownerId, String slug) throws TwitterException
      Show the specified list. Private lists will only be shown if the authenticated user owns the specified list.
      This method calls https://api.twitter.com/1.1/lists/show.json
      パラメータ:
      ownerId - The user ID of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.0
      関連項目:
    • showUserList

      UserList showUserList(String ownerScreenName, String slug) throws TwitterException
      Show the specified list. Private lists will only be shown if the authenticated user owns the specified list.
      This method calls https://api.twitter.com/1.1/lists/show.json
      パラメータ:
      ownerScreenName - The screen name of the user who owns the list being requested by a slug.
      slug - slug of the list
      戻り値:
      the specified list
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 3.0.2
      関連項目:
    • getUserListSubscriptions

      PagableResponseList<UserList> getUserListSubscriptions(String listSubscriberScreenName, long cursor) throws TwitterException
      List the lists the specified user follows.
      This method calls https://api.twitter.com/1.1/lists/subscriptions.json
      パラメータ:
      listSubscriberScreenName - The screen name of the list subscriber
      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.
      戻り値:
      the list of lists the specified user is subscribed to
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 2.1.0
      関連項目:
    • getUserListSubscriptions

      PagableResponseList<UserList> getUserListSubscriptions(String listSubscriberScreenName, int count, long cursor) throws TwitterException
      List the lists the specified user follows.
      This method calls https://api.twitter.com/1.1/lists/subscriptions.json
      パラメータ:
      listSubscriberScreenName - The screen name of the list subscriber
      count - The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
      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.
      戻り値:
      the list of lists the specified user is subscribed to
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscriptions

      PagableResponseList<UserList> getUserListSubscriptions(long listSubscriberId, long cursor) throws TwitterException
      List the lists the specified user follows.
      This method calls https://api.twitter.com/1.1/lists/subscriptions.json
      パラメータ:
      listSubscriberId - The ID of the list subscriber
      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.
      戻り値:
      the list of lists the specified user is subscribed to
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListSubscriptions

      PagableResponseList<UserList> getUserListSubscriptions(long listSubscriberId, int count, long cursor) throws TwitterException
      List the lists the specified user follows.
      This method calls https://api.twitter.com/1.1/lists/subscriptions.json
      パラメータ:
      listSubscriberId - The ID of the list subscriber
      count - The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
      cursor - Breaks the results into pages. 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.
      戻り値:
      the list of lists the specified user is subscribed to
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
      関連項目:
    • getUserListsOwnerships

      PagableResponseList<UserList> getUserListsOwnerships(String listOwnerScreenName, long cursor) throws TwitterException
      Returns the lists owned by the specified Twitter user. Private lists will only be shown if the authenticated user is also the owner of the lists.
      This method calls https://api.twitter.com/1.1/lists/ownerships.json
      パラメータ:
      listOwnerScreenName - The screen name of the list owner
      cursor - Breaks the results into pages. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. It is recommended to always use cursors when the method supports them. See Using cursors to navigate collections for more information.
      戻り値:
      lists owned by the specified Twitter user
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
    • getUserListsOwnerships

      PagableResponseList<UserList> getUserListsOwnerships(String listOwnerScreenName, int count, long cursor) throws TwitterException
      Returns the lists owned by the specified Twitter user. Private lists will only be shown if the authenticated user is also the owner of the lists.
      This method calls https://api.twitter.com/1.1/lists/ownerships.json
      パラメータ:
      listOwnerScreenName - The screen name of the list owner
      count - The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
      cursor - Breaks the results into pages. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. It is recommended to always use cursors when the method supports them. See Using cursors to navigate collections for more information.
      戻り値:
      lists owned by the specified Twitter user
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.1
    • getUserListsOwnerships

      PagableResponseList<UserList> getUserListsOwnerships(long listOwnerId, long cursor) throws TwitterException
      Returns the lists owned by the specified Twitter user. Private lists will only be shown if the authenticated user is also the owner of the lists.
      This method calls https://api.twitter.com/1.1/lists/ownerships.json
      パラメータ:
      listOwnerId - The id of the list owner
      cursor - Breaks the results into pages. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. It is recommended to always use cursors when the method supports them. See Using cursors to navigate collections for more information.
      戻り値:
      lists owned by the specified Twitter user
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.4
    • getUserListsOwnerships

      PagableResponseList<UserList> getUserListsOwnerships(long listOwnerId, int count, long cursor) throws TwitterException
      Returns the lists owned by the specified Twitter user. Private lists will only be shown if the authenticated user is also the owner of the lists.
      This method calls https://api.twitter.com/1.1/lists/ownerships.json
      パラメータ:
      listOwnerId - The id of the list owner
      count - The amount of results to return per page. Defaults to 20. No more than 1000 results will ever be returned in a single page.
      cursor - Breaks the results into pages. Provide a value of -1 to begin paging. Provide values as returned in the response body's next_cursor and previous_cursor attributes to page back and forth in the list. It is recommended to always use cursors when the method supports them. See Using cursors to navigate collections for more information.
      戻り値:
      lists owned by the specified Twitter user
      例外:
      TwitterException - when Twitter service or network is unavailable
      導入されたバージョン:
      Twitter4J 4.0.1