How does one get recent media of user's follows sorted by date in instagram api? -
it done on several requests in following algorithm:
- get user's follows
get/users/user-id/follows
- get each follows recent media looping through follows list
get/users/user-id/media/recent
it result in such feed: first follow's recent media, 2nd follow's recent media, etc. while desired result feed sorted date. done in instagram mobile app's home page
i of course accumulate response , programmatically parse each response, sort date. wondering if possible endpoint requests
Comments
Post a Comment