I'm wanting to setup an app that will retrieve all follower's IDs, count how many followers each has, and sum the total.
Example: MyAccount > MyFollowersAccount > followers_count
I want to do this for each follower and then add the total amount of followers they all have. So if I have 100 followers and my followers have 100 followers, I should get a return value of 10,000 followers or 10,100 (including my own).
I am having difficulty figuring out how to do this with multiple users. I've seen ones that will retrieve a single user, but I'm worried about looping through potentially 1,000 of followers.
Any ideas or suggestions?