我知道过滤器被用来显示更具体的结果。但是有没有办法可以用它来排除特定的用户或图像?或者 instafeed.js 是否有其他选择让我这样做?
var feed = new Instafeed({
target: 'instafeed',
get: 'tagged',
tagName: 'hashtag',
limit: '10',
sortBy: 'most-recent',
resolution: 'standard_resolution',
clientId: 'xxxxx',
template:'<img class="item" src="{{image}}">',
filter: function(image) {
//filter to exclude specific user
}
});
感谢任何反馈。非常感谢!