You can get images with simple jQuery without any other plugins. as below:
$(document).ready(function () { var apiurl = "https://api.instagram.com/v1/users/<YOURUSERNAME>/media/recent/?access_token=<YOURACCESSTOKEN>&count=5&callback=?"; $.getJSON(apiurl, function (data) { console.log("suatroot"); var suatroot = data.data; console.log(suatroot); $.each(suatroot, function (key, val) { console.log("item"); var itemobj = val.images.low_resolution.url; var hrefobj = val.link; var captobj = val.caption.text; console.log(captobj); console.log(itemobj); var suatpaket = "<a target='_blank' href='"+hrefobj+"'><img src='" + itemobj + "'/><br>"+captobj+"<br></a>"; $(".instagram").append(suatpaket); }); }); });
and HTML:
<div class='instagram'></div>
Thanks to this solution, the access token can be seen from the source code of the page, however this may not be a big problem for you.
source share