新Facebook API提取新闻源及其评论

有没有办法通过2013年7月发布的新变化facebook获得新闻推送和评论 - https://developers.facebook.com/roadmap/

我试图做什么?

我想通过一个API调用来获取带有评论(如果有任何评论)的最新新闻源,即使它的组API调用。

老办法:

1)从具有注释字段的流表中获取(注释字段现在已被弃用)

2)从带有注释字段的图形中取出(现在也被删除)


快速链接

  • 快速文档的新变化:https://developers.facebook.com/blog/post/2013/04/03/new-apis-for-comment-replies/
  • 指南:https://developers.facebook.com/docs/graphapi/guides/comments/
  • fql:http://developers.facebook.com/docs/reference/fql/comment
  • 图表:http://developers.facebook.com/docs/reference/api/Comment/

  • 如何使用fql? 您不再担心,因为您需要的是从流中获取post_id

    {"query1":"SELECT post_id, actor_id, created_time, message FROM stream WHERE filter_key in (SELECT filter_key FROM stream_filter WHERE uid=me() AND type='newsfeed') AND created_time<=now() LIMIT 5 ","query2":"SELECT post_id, id, fromid, time, text, user_likes, likes FROM comment WHERE post_id IN (SELECT post_id FROM #query1) LIMIT 5 ","query3":"SELECT id, name, pic_square FROM profile WHERE id IN (SELECT actor_id FROM #query1) or id IN (SELECT fromid FROM #query2)"}
    

    请使用图形API浏览器进行测试(启用“ 2013年7月重大更改 ”的迁移设置),它按预期工作(当然,您需要授予权限read_stream )。

    链接地址: http://www.djcxy.com/p/32577.html

    上一篇: New Facebook API fetching newsfeed and its comments

    下一篇: Facebook Ads API through FQL