交朋友脸书帖子
有没有办法使用 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
是的,有!
此调用将返回您有权查看的所有帖子(以及帖子中的数据 - 评论等...)(取决于您朋友的隐私设置)...
为了检索图片或视频,您所要做的就是是用视频或图片更改“帖子”...当然,您的应用程序必须有权查看您朋友的图片和视频。
Yes there is!
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..