How can I obtain the friends list of a friend or follower using Twitter4J?
Using getFriendsId(), I\'m only able to retrieve the friend\'s/follower\'s list of that cu
What about something like get Friends List? https://dev.twitter.com/docs/api/1.1/get/friends/list
According to the docs:
Returns a cursored collection of user objects for every user the specified user is following (otherwise known as their "friends").
There is an interface for this in twitter4j.api, but I can't figure out how to use it:
PagableResponseList<User> getFriendsList(String screenName, long cursor) throws TwitterException;