I am just creating a basic page that shows Photos from Instagram using the Instafeed.js library. I followed the tutorial but when I open my HTML page, I just see pixilated images and not the actual images.
When I open the console, I get the error net::ERR_FILE_NOT_FOUND next to each photo.
Here is the code:
<script type="text/javascript" src="instafeed.min.js"></script>
<div id="instafeed"></div>
<script type="text/javascript">
var feed = new Instafeed({
get: 'tagged',
tagName: 'awesome',
clientId: 'Your Client Id'
});
feed.run();
</script>