我通过下面的代码获得了Instagram照片,但我发现我得到的照片不是我想要的。有人可以帮我这个吗?
<div class="instafeed"></div>
<script type="text/javascript">
$(".instafeed").instagram({
get: 'tagged',
tagName: 'animals',
clientId: 'xxx',
image_size: 'thumbnail',
});
</script>
谢谢!
答案 0 :(得分:0)
(我刚收到http://instafeedjs.com/的说明。)
确保您的网页上包含Instafeed.js.
<script src="path/to/instafeed.min.js"></script>
<!--Try using id instead of class-->
<div id="instafeed"></div>
<script type="text/javascript">
new Instafeed({ // call `new Instafeed` here
get: 'tagged',
tagName: 'animals',
clientId: 'xxx',
image_size: 'thumbnail',
}).run(); // Call run after initialization
</script>