So I get a bunch of ids from
do {
if (0 < SklsIds.length) {
ids = twitter.getFriendsIDs(identlong, cursor);
} else {
ids = twitter.getFriendsIDs(cursor);
}
for (long id : ids.getIDs()) {
followers.add(id);
}
} while ((cursor = ids.getNextCursor()) != 0);
Then I want to use these ids get a users bio:
for (Long ideez : followers) {
System.out.println(twitter.showUser(ideez.toString()));
String bio = ideez.toString().getDescription().toLowerCase();
}
I have this rn but I don't think you can get a user's bio with just id or whatever this is. pls help
We can do something like this in order to retrieve the name and bio of our Twitter user's friends: