instagram-api
instagram-api copied to clipboard
:camera: New Instagram API 2016+
This API is Legacy API and no longer works especially if you try use POST endpoints
`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...
Hi, in `instagram` api documentation, some methods can give parameters, is it possible to pass these parameters to `instagram-api` methods ? for example in `userSelfMedia()` method, [API](https://www.instagram.com/developer/endpoints/users/#get_users_media_recent_self) says that this...
When I use userSelfMedia() it comes back correct and I get the correct info but when I try to call a specific user it comes back.. _________ SyntaxError: Unexpected token...
What's the best way to handle _pagination_? ``` javascript instagramApi.getMediasByTag(tag).then(function(data){ // one page is not enough for me, how can I get more? var pagination = data.pagination; }, errorHandler) ```
Create tests for all methods.