[Solved] What request should I make to get the followers list from a specific profile page
Try this: import time import requests link = ” params = {‘user’: ‘0xe744d23107c9c98df5311ff8c1c8637ec3ecf9f3’} payload = {“size”: 20} with requests.Session() as s: s.headers[‘User-Agent’] = ‘Mozilla (Windows NT 6.1) AppleWebKit (KHTML, like Gecko) Chrome Safari’ res = s.post(link,params=params,json=payload) for item in res.json():…