I am trying to fetch public Instagram images using hashtag but that's to be done without the use of client id/access token. I am using the script below
<div id="instafeed"></div>
<script type="text/javascript">
var userFeed = new Instafeed({
get: 'tagged',
tagName: 'fashion',
template: '<a class="fancybox" href="{{link}}" rel="ig" title="{{caption}}"><img class="instagram-image" src="{{image}}" /></a>',
links: 1,
limit: 30,
resolution: 'low_resolution'
});
userFeed.run();
</script>
But not able to fetch the images. If i try with providing the access token or user id, then only those images are fetched that are present in my Instagram with that specific hashtag. I need to implement this in Shopify.