Instafeed:跳过从Feed中检索视频类型的帖子

时间:2017-10-17 05:29:50

标签: image post video instagram instafeedjs

我想跳过我通过Instafeed JS插件收集的Feed中的所有视频类型帖子。从其他一些帖子中读取设置过滤器可以解决它但是如果我应用它(见下文)我只得到2个图像而不是5.这5个中的一个是视频类型,其余是图像类型。不确定这里发生了什么?

var loadButton = document.getElementById('instafeed-loadmore');
            var feed = new Instafeed({
                get: 'user',
                type: 'image',
                limit: '5',
                sortBy: 'most-recent',
                resolution: 'standard_resolution',
                userId: '',
                accessToken: '',
                template: '<div><a href="#" data-modal="instafeed-expand" data-caption="{{caption}}" data-image="{{image}}"><img src="{{image}}" data-etc=""></a></div>',
                filter: function(image) {
                    return image.type === 'image';
                },
                after: function() {
                    if (!this.hasNext()) {
                        loadButton.setAttribute('disabled', 'disabled');
                    }
                },
            });

            loadButton.addEventListener('click', function() {
                feed.next();
            });

2 个答案:

答案 0 :(得分:2)

也许删除分辨率参数应该有所帮助。我也不认为

type: 'image',

是一个有效的参数。我也无法在instafeed文档中找到它。

答案 1 :(得分:0)

跟随

var feed = new Instafeed({
  get: "user",
  userId: "xxxx",
  accessToken: "xxxx",
  filter: function(image) {
    if (image.type === "image") {
      return false;
    }
    return true;
  }
});
feed.run();