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
PagableResponseList friendlist= twitter.getFriendsList(user.getScreenName(), -1); int sizeoffreindlist= friendlist.size(); for(int i=0;i
It will provide you a list of 20 friends as the default limit is 20