gpt4 book ai didi

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

转载 作者:行者123 更新时间:2023-12-03 09:02:00 24 4
gpt4 key购买 nike

我想收集特定用户喜欢的所有图像。我有访问 token 。找不到如何通过 instafeed.js 插件实现此目的

最佳答案

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

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

enter image description here

如果这就是您想要的,那么 instafeed.js 目前不支持此端点:(

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

enter image description here

The owner instafeed.js 尚未将其合并到主存储库/源代码中,但如果您需要此功能,可以下载此提交,或将突出显示的代码合并到 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;

关于javascript - instafeed.js 获取特定用户喜欢的媒体列表,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/32279838/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com