Instagram API 显示太多图片

Instagram API Displaying Too Many Images

我的 Instagram 有问题API。我只想显示上传到我帐户的最后一张图片,但现在显示所有图片:

<div class="col-xs-12 col-sm-6 col-md-4">
    <div class='square'>
        <div id="slideshow" class='white instagram' style="margin-top: 0; margin-bottom: 0; margin-left: 0; margin-right: 0;"></div>
            <h5>Instagram</h5>
            <h4>does</h4></br/>
                <div class="bottom"><i class="fa fa-instagram fa-2x"></i></div>
                <div class='bottom_right'>
                    Wed 18 Oct 2015
               </div>
       </div>
   </div>
</div>

<script type="text/javascript">
        $(document).ready(function() {
            $('#slideshow').embedagram({
                    instagram_id: xxxxxxxxx,
                    thumb_width: 360,
                    wrap_tag: 'div'
                });
        });
</script>

embedagram 有一个 limit 参数。默认为 20。

$('#slideshow').embedagram({
                    instagram_id: xxxxxxxxx,
                    thumb_width: 360,
                    wrap_tag: 'div',
                    limit: 5
                });
        });