Using the Instagram API to get ALL followers
问题 I'm using the Instagram API to get the number of people who follow a given account as follows. $follow_info = file_get_contents('https://api.instagram.com/v1/users/477644454/followed-by?access_token=ACESS_TOKEN&count=-1'); $follow_info = @json_decode($follow_info, true); This returns a set of 50 results. They do have a next_url key in the array, but it becomes time consuming to keep on going to the next page of followers when dealing with tens of thousands. I read on StackOverflow that