Reputation: 11
I want to get recent 10 images from Instagram, but it always getting me only last upload image.
https://api.instagram.com/v1/users/self/media/recent/?access_token=ACCESS-TOKEN&count=10
Upvotes: 0
Views: 479
Reputation: 90
there is an api function for customizing the Instagram feed's using instafeed.min.js
Below is an example snippet with limit of 10 feeds.
var userFeed = new Instafeed({
get: 'user',
userId: '212*****',
accessToken: '21258593*********************************',
limit: '10',
sortBy: 'most-recent',
links: true,
resolution: 'low_resolution',
});
Upvotes: 1