1

facebook 应用程序如何访问订阅源中的社交读者帖子?例如,我想从我正在编写的应用程序中访问华盛顿邮报的社交阅读器帖子(当其他人在那里阅读一篇文章并显示在我的新闻提要中时)。是否可以这样做,使用 FQL?

4

1 回答 1

0

它在 Graph API 中很容易获得(我会检查它是否在 FQL 中)

基本上,无论哪种方式,您都需要向user_actions.reads用户请求许可。(注意:user_actions:reads这不适用于命名空间为“reads”的应用程序,对于使用内置操作的新闻、音乐和视频应用程序有一个特殊的范围)

然后,对于 Graph API,只需调用/USER_ID/news.reads- 响应包括使用内置“读取”操作从所有应用程序中最近阅读的文章,下面是我帐户的示例响应:

{
  "data": [
    {
      "id": "REMOVED_ID", 
      "from": {
        "id": "REMOVED_MY_USER_ID", 
        "name": "REMOVED_MY_NAME"
      }, 
      "start_time": "2012-05-10T00:05:10+0000", 
      "end_time": "2012-05-10T00:05:10+0000", 
      "publish_time": "2012-05-10T00:05:10+0000", 
      "application": {
        "id": "235586169789578", 
        "name": "The Independent"
      }, 
      "data": {
        "article": {
          "id": "10150697347986736", 
          "url": "http://www.independent.co.uk/life-style/food-and-drink/features/the-10-best-scotch-whiskies-1488408.html", 
          "type": "article", 
          "title": "The 10 Best Scotch Whiskies"
        }
      }, 
      "likes": {
        "count": 0
      }, 
      "comments": {
        "count": 0
      }
    }, 
.... //more articles
于 2012-05-12T15:58:23.197 回答