-
Notifications
You must be signed in to change notification settings - Fork 10
Closed
Labels
Description
I try to request the followers of a user like this:
instagram.profile().getFollowers("user1")
.setOnCompleteCallback(call ->
{
if (call.isSuccessful)
{
List<String> followers = call.result;
for (String follower : followers)
{
Print.e(follower);
}
}
});
But I get the error challenge_required. How to deal with this error?
noirtier-villefort