[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