如何通过 FQL 和 Graph API 获取最近的活动故事?

发布于 2024-12-18 17:43:59 字数 425 浏览 2 评论 0原文

我只想从 Facebook 收到消息,比如“Yanyang 和 Sina Sadegh 现在是朋友”,我看到 Piyush Mangalick 说“一些最近的 Activity 故事现在通过 FQL 和 Graph API 公开,这些故事以及故事中提到的人的标签现在可以通过链接“http://developers.facebook.com/blog/post/592/”中的 FQL 流表和 Graph API Post 对象获得“

但是当我检查流表时,我发现了该列到目前为止,Steam 表中不存在“story”或“story_tags”。它总是抛出“story不是流表的成员”,为什么?

虽然我使用 Graph API 获取 feed 'me/feed',但它只显示评论、喜欢和分享,没有像我想要的朋友关系或音乐信息。

如何通过 FQL 和 Graph API 获取最近的活动故事?

I just want to get message from facebook, like 'Yanyang and Sina Sadegh are now friends', I see Piyush Mangalick said "some recent Activity stories now exposed via FQL and Graph API and these stories, along with tags of people mentioned in the stories are now available through the FQL stream table and the Graph API Post object" in the link 'http://developers.facebook.com/blog/post/592/'

But while I check stream table, I found the column 'story' or 'story_tags' is not exist in steam table till now. It always throw 'stroy is not a member of the stream table', why?

And while I use Graph API to get feed 'me/feed', it just show the comments and likes and shares, no friends relation ship like I want or music info.

How could I get the recent activity stories via FQL and Graph API?

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

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

发布评论

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

评论(2

橪书 2024-12-25 17:43:59

不想问一个愚蠢的问题,您是否在应用程序的高级设置中启用了迁移?

我刚刚尝试了 fql?q=select description, tagged_ids, message_tags from stream where source_id = me() 形式的 FQL 查询,其中包括“在照片中被标记”和其他类似的故事,如预期的

Without wanting to ask a silly question, did you enable the migration in your app's advanced settings?

I just tried an FQL query of the form fql?q=select description, tagged_ids, message_tags from stream where source_id = me() and it's including 'was tagged in a photo' and other similar stories, as expected

秋叶绚丽 2024-12-25 17:43:59

我遇到了类似的问题,但我通过使用 description 字段而不是 story 来纠正它。

似乎 description 是 FQL 中的适当字段,而 story 是 Graph API 中的相应字段。

I had a similar issue, but I corrected it using by using the description field instead of story.

It seems that description is the appropriate field in FQL and story is the corresponding field in the Graph API.

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