从 Facebook 新闻提要中获取视频

发布于 2024-11-04 09:41:22 字数 521 浏览 0 评论 0原文

Facebook 新闻提要中的每个帖子都有属性类型。我需要从 Facebook 新闻提要中获取带有 type='video' 的所有帖子,但我找不到方法来做到这一点。 我得到的最好结果是当我像这样用youtube过滤它时:

https://graph.facebook.com/me/home?q=youtube&access_token=2227470867|2.DZCbXFjyGRSLWHSiklY1lg__.3600.1304269200.0-531926632|OiWpywOlwl 1foPSth9_8RmrihTQ

请将access_token替换为与您自己的链接

every post in facebook news feed has property type. i need to fetch all posts with type='video' from facebook news feed and i cant find way to do this.
Best result ive got is when i filter it with youtube like this:

https://graph.facebook.com/me/home?q=youtube&access_token=2227470867|2.DZCbXFjyGRSLWHSiklY1lg__.3600.1304269200.0-531926632|OiWpywOlwl1foPSth9_8RmrihTQ

please replace access_token in link with your own

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

终弃我 2024-11-11 09:41:22

您可以迭代用户的提要并丢弃不属于视频类型的项目。

<script>
FB.api('/me/home/', {limit: 1000}, function(response)
{
    response.data.forEach(function(object)
    {
        if (object.type == 'video')
        {
            console.log(object.message);
        }
    });
});
</script>

You could iterate through a user's feed and throw out the items that aren't of type: video.

<script>
FB.api('/me/home/', {limit: 1000}, function(response)
{
    response.data.forEach(function(object)
    {
        if (object.type == 'video')
        {
            console.log(object.message);
        }
    });
});
</script>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文