I want to get names of all friends in efficient way within the API limit of Twitter. I know I can use this method:
IDs ids = twitter.getFriendsIDs(cursor);
But this method only gives the ids and I need to iterate on this list, which is not efficient at all and will exceed the API call limit.