instafeed.js获取特定用户喜欢的媒体列表

时间:2015-08-28 21:11:49

标签: javascript instagram instafeedjs

我想收集特定用户喜欢的所有图片。 我有访问令牌。 无法通过instafeed.js插件找到如何实现这一目标

1 个答案:

答案 0 :(得分:1)

用于获取用户喜欢的媒体列表的instagram API端点仅适用于当前经过身份验证的用户,而不是任何特定用户。

https://api.instagram.com/v1/users/self/media/liked?access_token=ACCESS-TOKEN

enter image description here

如果那是你想要的,那么 instafeed.js 目前不支持此终点:(

好消息是github上this pull request上的instafeed.js repository实现了终点。

enter image description here

instafeed.js的

The owner尚未将其合并到主存储库/源代码中,但如果您需要此功能,则可以下载此提交,或将突出显示的代码合并到instafeed的本地副本中。 js javascript文件并尝试一下。

    case "liked":
      if (typeof this.options.accessToken !== 'string') {
        throw new Error("No access token. Use the 'accessToken' option.");
      }
      endpoint = "/users/self/media/liked";
      break;