0

How detect recent unfollowers on instagram

Istagram Api dont give us who persions unfollows us , but we want to know recent unfollowers

How ?

Jeffrey Bosboom
  • 13,313
  • 16
  • 79
  • 92
Hamidreza shaabani
  • 165
  • 1
  • 3
  • 10
  • 1
    possible duplicate of [how fetch recent unfollowers from instagram api?](http://stackoverflow.com/questions/27101918/how-fetch-recent-unfollowers-from-instagram-api), posted by the same user – Jeffrey Bosboom Dec 29 '14 at 08:16

1 Answers1

-1

First, you might want to check Instagram's Terms of Service to check if you are allowed to do this.

An obvious way of doing this would be saving a list of all the followers and comparing this list with the previously saved one. That will tell you what the changes are including who unfollowed and in which interval it happened.

Elek
  • 32
  • 1
  • This does not provide an answer to the question. To critique or request clarification from an author, leave a comment below their post - you can always comment on your own posts, and once you have sufficient [reputation](http://stackoverflow.com/help/whats-reputation) you will be able to [comment on any post](http://stackoverflow.com/help/privileges/comment). – zisoft Dec 29 '14 at 08:55
  • 2
    @zisoft I don't see a problem here. The first paragraph may be a comment, but the second one is a perfectly valid approach to the problem. – glglgl Dec 29 '14 at 09:11
  • how do you handle the situations if the user has 100k followers? Is it possible to get the entire list everytime? – Catalin May 28 '17 at 14:03