ping / instagram_private_api

A Python library to access Instagram's private API.
MIT License
2.98k stars 616 forks source link

Can't make pagination on media likers #339

Closed amirpdlll closed 3 years ago

amirpdlll commented 3 years ago

Please follow the guide below


Before submitting an issue, make sure you have:

Which client are you using?


Describe your Question/Issue:

Hi We are using functionapi.media_likers but we can't make no pagination and also when we use function below to get limited number of likers it returns 999 likers api.media_likers(media_id='****',count=20) also there is no resource for how to use end_cursor in this function media_likers(media_id='1855096232672598907',count=20,end_cursor=30) How can we make pagination on likers?

Paste the output of python -V here: Python 3.7.3

Code:

api = Client(user_name, password)
api.media_likers(media_id='****',count=20,end_cursor=30)    
amirpdlll commented 3 years ago

I was using APP version but I was reading web documentation SOLVED