[Solved] Display Who Follows You on Instagram [closed]

These are the relevant Instagram API docs you should refer to for specifics. As a rough overview: you will need to register a developer account, create an app, and authorize that app to receive an access token. Once you have that, something like this will do what you want: $userId = “self”; $url = “https://api.instagram.com/v1/users/$user/followed-by?access_token=$accessToken”; … Read more

[Solved] Pathetic state of Instagram API

Looks like you are in Sandbox mode, so you will not get any public data, you will only get data from you or your sandbox users. Try search for an hashtag that you have posted a photo for, then you will just see that photo in API response. Once you get approved with public_content permission, … Read more