instagram-api
instagram-api copied to clipboard
How to specify the amount of data returned?
instagramAPI.userSelfMediaLiked().then(function(result){ //console.log(result.data); // user info console.log(result.data) console.log(result.limit); // api limit console.log(result.remaining) // api request remaining }, function(err){ console.log(err); });
with this for example can you specify only the likes from the last 24 hours or only return the most recent x likes?
Thanks