I really don't understand why it's not working. I have the right access token and userId. I even looked at a youtube tutorial [https://www.youtube.com/watch?v=9ptaVOk4DDo][1] and did everything accordingly ;(
All that it shows is a blank page, and the inspect thing says "Uncaught Error: No images were returned from Instagram". Is there something wrong with Instafeed.js? Is there any easier to use instagram api?
<script src="https://ajax.googleapis.com/ajax/libs/jquery/2.2.2/jquery.min.js"></script>
<script type="text/javascript" src="js/instafeed.min.js"></script>
<script type="text/javascript">
var feed = new Instafeed({
get: 'tagged',
tagName: 'summer',
userId: ' ***',
accessToken: '***',
template: '<a href="\{\{link\}\}"><img src="\{\{image\}\}" /></a>',
resolution: 'standard_resolution'
});
feed.run();
</script>
<div id="instafeed">
</div>