交朋友脸书帖子

发布于 2024-12-03 02:04:56 字数 274 浏览 0 评论 0原文

有没有办法使用 facebook 的 FQL 来获取用户朋友的所有帖子(或视频帖子)?

例如:

SELECT post_id, message FROM stream WHERE source_id=(fb_friends_array) 

我如何将它与图形 api 一起使用。通常我使用以下语法来获取数据:

$data = json_decode(file_get_contents(....));

Is there a way to use facebook's FQL to fetch all posts (or video posts) of a user's friend?

For example something like:

SELECT post_id, message FROM stream WHERE source_id=(fb_friends_array) 

And how do i use this with the graph api. Normally i use the following syntax to get data:

$data = json_decode(file_get_contents(....));

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

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

发布评论

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

评论(1

醉殇 2024-12-10 02:04:56

是的,有!

https://graph.facebook.com/{friends_uid}/posts

此调用将返回您有权查看的所有帖子(以及帖子中的数据 - 评论等...)(取决于您朋友的隐私设置)...

为了检索图片或视频,您所要做的就是是用视频或图片更改“帖子”...当然,您的应用程序必须有权查看您朋友的图片和视频。

Yes there is!

https://graph.facebook.com/{friends_uid}/posts

This call will return ALL posts ( and data within the posts - comments, etc...) that you have permissions to see( depends on your friends privacy settings )...

In order to retrieve pictures or videos, all you have to do is change "posts" with videos or pictures... Of course your application will have to have permissions to see you friends pictures and videos..

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文