Getting number of followers of a user in instagram using Instagram API
问题 I know this has been asked before .. but my code doesn't seem to work for users other than the one using whom accesstoken is created .. i.e I am able to access the profile of only one user.(using whom I created accesstoken) from urllib2 import urlopen from json import load import json import json import sys import time import requests userid="userid_of_some_instagram_user" access_token="mytoken" url = "https://api.instagram.com/v1/users/%s/?access_token=%s"%(userid,access_token) response