How to get list of following users of an profile?
echogit opened this issue · 2 comments
echogit commented
I'm trying to use the API, already can get the profile information, but can't get around to get the list of the following users of my instagram, it returns empty list, could you provide one e working example?
String userId = instagram.getCurrentUserInfo().getData().getId();
UserFeed following = instagram.getUserFollowList(userId);
// Pagination pagination = following.getPagination();
// String nextCursor = pagination.getNextCursor();
// instagram.getUserFeedInfoNextPage(pagination);
List<UserFeedData> users = following.getUserList();
I tried to use this pagination (commented), but really couldn't make it work.
echogit commented
I would really appreciate if someone could show me some example as how to get a list of the following users. Cant get it to work.