如何使用 FQL 检索新闻源

发布于 2024-12-19 08:28:33 字数 111 浏览 1 评论 0原文

我正在开发 WPF 应用程序,我想使用 FQL 获取新闻提要,以便我拥有 appID 和令牌我对此很陌生,所以任何人都可以帮助我如何在 facebook 中获取此新闻提要..

谢谢..!! !

I am working on WPF app and I want to get news feed using FQL so that I have the appID and Token I am new to this so can anybody help me how I can get this news feed in facebook..

Thank you..!!!

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

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

发布评论

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

评论(1

日久见人心 2024-12-26 08:28:33

使用这种类型的 FQL 查询:

SELECT post_id, actor_id, target_id, message FROM stream WHERE 
filter_key in (SELECT filter_key FROM stream_filter WHERE uid = me() AND type = 'newsfeed')

另请参阅此链接:

  1. 如何编写 FQL获取新闻源
  2. 如何使用以下方式仅从用户的 Facebook 新闻源中获取照片graph api?

更新:

要读取您需要的流表 :

  1. 当前会话用户能够查看的所有帖子的 read_stream 权限
  2. read_insights 权限,查看当前会话用户拥有的主页所发布的任何帖子的展示

次数stream_filter 表您需要:

  1. 有效的访问令牌 具有基本权限
  2. read_stream 权限(如果与流表结合使用)。

Use this type of fql query:

SELECT post_id, actor_id, target_id, message FROM stream WHERE 
filter_key in (SELECT filter_key FROM stream_filter WHERE uid = me() AND type = 'newsfeed')

See this links also:

  1. How to write FQL to fetch news feeds
  2. How to get only photos from user's Facebook newsfeed using graph api?

Update:

To read the stream table you need:

  1. read_stream permissions for all posts that the current session user is able to view
  2. read_insights permissions to see post impressions for any posts made by a Page owned by the current session user

To read the stream_filter table you need:

  1. a valid access token with basic permissions
  2. read_stream permissions if used in combination with stream table).
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文