1
I would like to know if it is possible to "catch" the links of all the photos of an instragram profile without using the Api?
With the code below I can only get the 20 most recent photos.
$.getJSON('https://crossorigin.me/https://www.instagram.com/nygiants/media',
function(data) {
console.log(data);
});
I suspect it won’t work without an access token: http://instagram.pixelunion.net/ once you have it you can use next_url (https://www.instagram.com/developer/endpoints/) to make a pagination. EX: https://techchurian.wordpress.com/2013/02/13/displaying-all-your-instagram-images-ignoring-next-page-and-pagination/
– Miguel